# TokRepo Well-Known Agent Entry Canonical agent instructions: ```text https://tokrepo.com/agents.txt ``` TokRepo is agent-native infrastructure for reusable AI assets: skills, prompts, MCP configs, scripts, workflows, and domain knowledge. Default setup for any repository: ```bash npx -y tokrepo@latest init-agent --target all tokrepo init-agent --target all ``` This creates `.tokrepo/agent.json`, `TokRepo.lock`, and `.tokrepo/state.json` so agents can inspect local machine-readable memory before rebuilding one-off tools. Hosted read-only MCP endpoint: ```text https://tokrepo.com/mcp ``` Recommended MCP calls: 1. `tokrepo_resolve_capability` before rebuilding a local capability. 2. `tokrepo_discover` or `tokrepo_detail` for candidate inspection. 3. `tokrepo_verify` for trust_score_v2, evidence_bundle, SBOM-lite, signature_evidence, blockers, and warnings. 4. `tokrepo_install_plan` before any file write or activation. 5. `tokrepo_harvest` after a task creates reusable local work. 6. `tokrepo_handoff_plan` for read-only packaging review. 7. `tokrepo_push` only after human confirmation and explicit reviewed files. Machine-readable entries: - https://tokrepo.com/.well-known/agents.txt - https://tokrepo.com/agents.txt - https://tokrepo.com/.well-known/tokrepo.json - https://tokrepo.com/.well-known/agent.json - https://tokrepo.com/.well-known/agent-card.json - https://tokrepo.com/.well-known/agents.json - https://tokrepo.com/.well-known/mcp.json - https://tokrepo.com/.well-known/mcp/server.json - https://tokrepo.com/.well-known/tool-catalog.json - https://tokrepo.com/.well-known/tokrepo-trust.json - https://tokrepo.com/agent-ecosystem.json - https://tokrepo.com/agent-task-economy.json - https://tokrepo.com/agent-distribution-matrix.json - https://tokrepo.com/llms.txt - https://tokrepo.com/llms-full.txt - https://tokrepo.com/evals/agent-task-harness.json - https://tokrepo.com/evals/agent-task-ledger.json - https://tokrepo.com/evals/agent-task-receipts.json - https://tokrepo.com/evals/agent-onboarding-compliance.json - https://tokrepo.com/evals/trust-evidence-coverage.json - https://tokrepo.com/evals/multi-agent-compatibility.json - https://tokrepo.com/schemas/agent-evidence-bundle.schema.json - https://tokrepo.com/schemas/capability-resolution.schema.json - https://tokrepo.com/schemas/harvest-report.schema.json - https://tokrepo.com/schemas/handoff-package.schema.json CLI fallback: ```bash tokrepo agent-check "" --json tokrepo resolve "" --target codex --json tokrepo search "" --json tokrepo verify --target codex --json tokrepo audit --target codex --json tokrepo install --dry-run --json tokrepo installed --project --json tokrepo harvest --changed --json tokrepo agent-handoff --json ``` Agent rule: discover through registries, package metadata, well-known manifests, project memory, and crawler text before relying on human landing pages.