Skip to main content
ClaudeWave
genesiscode2026 avatar
genesiscode2026

genesis-agent-tools

Ver en GitHub
SubagentsRegistry oficial0 estrellas0 forksJavaScriptActualizado today
ClaudeWave Trust Score
52/100
· OK
Passed
  • Actively maintained (<30d)
  • Topics declared
  • Documented (README)
Flags
  • !No standard license detected
  • !No description
  • !Install pipes a remote script into a shell (curl | sh)
Last scanned: 9/23/2026
Install as a Claude Code subagent
Method: Clone
Terminal
git clone https://github.com/genesiscode2026/genesis-agent-tools && cp genesis-agent-tools/*.md ~/.claude/agents/
1. Clone the repository and copy the agent .md definitions into ~/.claude/agents (or .claude/agents inside a project).
2. Start a new Claude Code session to load the agents.
3. Delegate work to them with the Task/Agent tool or by name.
Casos de uso

Resumen de Subagents

# GENESIS Agent Tools

Pay-per-call AI-agent APIs on **Base USDC (x402 v2)**. No account, no API key, no
subscription. Every paid endpoint returns HTTP `402` with the payment challenge;
sign the quoted USDC amount to the canonical Exodus treasury and retry to receive
the premium result.

**Live origin:** `https://genesis-agent-tools.genesisagenttools.workers.dev`

## Release Guardian (primary)

**Pay-per-call x402 API that checks API/schema changes for breaking compatibility
before release.**

- **Endpoint:** `POST /api/flagships/release-guardian`
- **Input:** `{ "tier": "quick", "input": { "previous": …, "current": … } }`
- **Output:** `SAFE` / `RISKY` / `BREAKING` / `UNKNOWN` / `UNSUPPORTED`
- **Price:** Quick **$0.005** · Deep $0.019 (USDC)
- **Network:** Base (`eip155:8453`) · USDC · non-custodial (EIP-3009)

```bash
curl -sS -D - -X POST \
  https://genesis-agent-tools.genesisagenttools.workers.dev/api/flagships/release-guardian \
  -H 'content-type: application/json' \
  -d '{"tier":"quick","input":{"previous":{"paths":{"/users":{},"/users/{id}":{}}},"current":{"paths":{"/users":{}}}}}'
# → HTTP 402 with a base64 PAYMENT-REQUIRED header; sign & retry to get SAFE/RISKY/BREAKING
```

Runnable CI examples (GitHub Actions, shell, JS): [`examples/release-guardian/`](examples/release-guardian).

### GitHub Action

```yaml
- uses: genesiscode2026/genesis-release-guardian@v1
  with:
    previous-spec: spec/openapi.baseline.json
    current-spec: spec/openapi.json
    mode: quick
    fail-on: breaking
    max-spend-usd: '0.01'
    private-key: ${{ secrets.X402_PRIVATE_KEY }}
```

The action reads only the two spec files you supply, enforces a spending ceiling
against the live 402 challenge before signing, and never holds your key. Live demo:
[`genesiscode2026/release-guardian-demo`](https://github.com/genesiscode2026/release-guardian-demo).

### MCP

```bash
npx -y genesis-agent-mcp
```

A thin buyer-side MCP adapter exposes Release Guardian + Workflow Runner (and the
other flagships) as tools for Cline / Claude / Cursor. Buyer key via
`X402_PRIVATE_KEY` (never committed); per-call ceiling + session budget built in.
Config: [`mcp/README.md`](mcp/README.md).

## Other flagships

| Flagship | What it does (buyer intent) | Endpoint | Quick | Deep |
|---|---|---|---|---|
| **Workflow Runner** | Validate or run a bounded HTTP/JSON workflow with a deterministic trace. | `POST /api/flagships/workflow-runner` | 0.005 | 0.035 |
| **Asset Intelligence** | Verify a crypto asset's live multi-source price, freshness, and on-chain owner. | `POST /api/flagships/asset-intelligence` | 0.005 | 0.025 |
| **Research & Evidence** | Extract cited claims and contradictions from supplied URLs. | `POST /api/flagships/research-evidence` | 0.005 | 0.040 |
| **Agent Assurance** | Audit an agent or MCP server for readiness, observed risk, and evidence. | `POST /api/flagships/agent-assurance` | 0.005 | 0.029 |

All prices in **USDC**. All Quick ≤ $0.005 (Agent402 `execute`); all Deep ≤ $0.040
(`execute-plus`). Bounded workflow example: [`examples/workflow-runner/`](examples/workflow-runner).

## How do I pay? (x402 v2)

- Network: **Base** (`eip155:8453`)
- Asset: **USDC** (`0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913`)
- Recipient: **Exodus treasury** `0xC6F86e170411182114FcCdb28793dC76B5e8D144` (non-custodial)
- Scheme: `exact` (EIP-3009), fallback facilitator: Dexter (Permit2)

An x402 client decodes the 402, signs the EIP-3009 USDC authorization, and retries
with the `PAYMENT-SIGNATURE` header. See `examples/` for runnable curl + JavaScript
(`@x402/fetch`) buyers — replace only the funded buyer key.

The Agent402 50-settlement gate affects Agent402 **auto-dispatch only**; direct
x402 buyers (these examples) can purchase without Agent402 routing.

## Machine discovery

- Agent402 index: registered origin `genesis-agent-tools.genesisagenttools.workers.dev`
  (find it via `GET https://agent402.tools/api/route?q=<task>`)
- OpenAPI: `GET /openapi.json` · x402 manifest: `GET /.well-known/x402`
- Machine catalog: `GET /api/flagships` · `llms.txt`: `GET /llms.txt` · Health: `GET /health`

## Also available (secondary)

- **Source-code products** (55 saleable): API-contract detectors, agent-security SDKs,
  quant-research suites, financial-visualization and privacy tooling — sold under a
  non-exclusive GENESIS license. Catalog: `/catalog.json` · `/catalog.md`.
- **Compatibility APIs** (6 paid + 1 free): `POST /api/mcp-schema-drift`, `POST /api/openapi-breaking-change`,
  `POST /api/sdk-compatibility`, `POST /api/compatibility-suite`, `POST /api/batch-compatibility-audit`,
  `POST /api/release-readiness`, free `POST /api/preflight`.
- **NFT access tiers**: `GENESIS AGENTS — ORIGIN` (ERC-721) + `GENESIS PASSES` (ERC-1155). `GET /nft`.

## Security

No private keys or seed material in this repository. GENESIS never holds buyer
funds and never requests private keys. Report issues via GitHub Issues. See `SECURITY.md`.

## Privacy

The GitHub Action and MCP adapter transmit only the API/schema artifacts you
explicitly supply. Nothing else in your repository is read or uploaded; there is no
server-side repo cloning, no IP/geolocation persistence, and no analytics trackers.
Payment wallet addresses are necessarily public/on-chain.

## Contact

`chitara.trading@proton.me` — technical support, ownership verification, and security.

## License

Discovery/documentation only. Proprietary source is sold separately under a
non-exclusive GENESIS license.


agentic-commerceai-agentsbasecloudflare-workersmicropaymentsusdcx402

Lo que la gente pregunta sobre genesis-agent-tools

¿Qué es genesiscode2026/genesis-agent-tools?

+

genesiscode2026/genesis-agent-tools es subagents para el ecosistema de Claude AI con 0 estrellas en GitHub.

¿Cómo se instala genesis-agent-tools?

+

Puedes instalar genesis-agent-tools clonando el repositorio (https://github.com/genesiscode2026/genesis-agent-tools) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar genesiscode2026/genesis-agent-tools?

+

Nuestro agente de seguridad ha analizado genesiscode2026/genesis-agent-tools y le ha asignado un Trust Score de 52/100 (tier: OK). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene genesiscode2026/genesis-agent-tools?

+

genesiscode2026/genesis-agent-tools es mantenido por genesiscode2026. La última actividad registrada en GitHub es del 2026-09-22, con 0 issues abiertos.

¿Hay alternativas a genesis-agent-tools?

+

Sí. En ClaudeWave puedes explorar subagents similares en /categories/agents, ordenados por popularidad o actividad reciente.

Despliega genesis-agent-tools en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: genesiscode2026/genesis-agent-tools
[![Featured on ClaudeWave](https://claudewave.com/api/badge/genesiscode2026-genesis-agent-tools)](https://claudewave.com/repo/genesiscode2026-genesis-agent-tools)
<a href="https://claudewave.com/repo/genesiscode2026-genesis-agent-tools"><img src="https://claudewave.com/api/badge/genesiscode2026-genesis-agent-tools" alt="Featured on ClaudeWave: genesiscode2026/genesis-agent-tools" width="320" height="64" /></a>

Más Subagents

Alternativas a genesis-agent-tools