Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/tokencanopy/e2a/agentifynpx skills add tokencanopy/e2a --skill agentifygit clone --depth 1 https://github.com/tokencanopy/e2aWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00093 | $0.01462 |
| Opus 5 | $0.00046 | $0.00731 |
| Sonnet 5 | $0.00019 | $0.00292 |
| Haiku 4.5 | $0.00009 | $0.00146 |
Grade A, and why
agentify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
agentify — deploy the autonomous-repo feedback loop
Beta. This skill is under active development; the setup flow may change and a lower-friction "express" onboarding is being explored.
/agentify installs the framework into a target repo: feedback in →
triaged GitHub issue → human-gated fix PR → filer notified. It bundles the
framework as templates, so installing this plugin is grabbing the
framework. The install lands as a PR the repo owner reviews and merges —
the install itself goes through the same human gate the framework runs on.
Where the tooling lives. The scaffolder and templates ship in this skill's own directory, next to this
SKILL.md—agentify-render.sh,templates/,references/. Substitute that absolute path for$AGENTIFY_DIRbelow; the scaffolder resolves its own resources, so any working directory works.
v0 scope. The full loop ships: triage/intake (email → triaged issue), comms (filer acks + the fix-gate approval email + verified-reply routing), fix + release (the coding agent's human-reviewed PR + the merge→shipped callback), and this deploy flow. The mechanical render is automated (
agentify-render.sh, with a_selftest); the Q&A and the one-time identity/secret setup stay guided. Anupdatemode (re-render preserving the adopter's config tweaks) is the natural follow-on — the render is already idempotent.
What gets scaffolded into the target repo
from $AGENTIFY_DIR/templates/ |
to the target repo |
|---|---|
autonomous-repo.config.yml.tmpl |
autonomous-repo.config.yml (the only file the adopter owns) |
runtime-skill/** |
.claude/skills/autonomous-repo/** |
scripts/*.sh (ticket_card.sh, comms_send.sh, released_markers.sh) |
scripts/*.sh |
workflows/*.yml.tmpl |
.github/workflows/*.yml |
Deploy procedure
- Detect. Read the target repo: its
OWNER/REPO, primary language, test command, and CI — used to fill the fix-laneverify_setup_scriptand sensible defaults. - Configure. Ask the adopter the config values and export them as the
ANS_*env varsagentify-render.shreads:ANS_PRODUCT_NAME,ANS_OWNER,ANS_REPO,ANS_MARKER,ANS_REVIEWER_LOGIN,ANS_BOT_LOGIN,ANS_SUPPORT_ADDRESS,ANS_FIX_GATE_MODE(hitlrecommended),ANS_APPROVER_ADDRESS,ANS_VERIFY_SETUP_SCRIPT. (The bot login can be filled later from the checklist; secrets are never gathered here.) - Render. Run
"$AGENTIFY_DIR/agentify-render.sh" --to <target-repo-root>. It fillsautonomous-repo.config.ymlfrom theANS_*answers (failing loudly on any unfilled placeholder) and scaffolds the runtime skill, the scripts, and the four workflows into their real paths (.claude/skills/autonomous-repo/,scripts/,.github/workflows/*.yml). Re-running updates the scaffolded code but PRESERVES an existingautonomous-repo.config.yml(your tunedalways_hitl, the filledbot_login) — pass--forceonly to regenerate the config. Then tune the rendered config'salways_hitllist for the product's sensitive surfaces, and sanity-check:scripts/*.sh _selftestall green and the config parses. Optional addons ($AGENTIFY_DIR/templates/addons/) — e.g.submit-feedback-mcp(asubmit_feedbackMCP tool that email-bridges into the support mailbox) — are opted in viaANS_ADDONS="<name> ..."; the render scaffolds each totools/<name>/and appends its setup toAGENTIFY-ADDON-SETUP.md. Addons are additive; the loop runs without them. - Auto-do the safe parts. Create the labels from
labels.*viagh(feedback,agent-fix,wontfix,feedback-ops, thestatus:*set). - Hand off the rest (print, don't do — see
references/setup-checklist.md): create the GitHub App (bot identity) and setgithub_app_loginin config; create the e2asupport@agent + an agent-scoped API key; add the repo secrets (CLAUDE_CODE_OAUTH_TOKENorANTHROPIC_API_KEY,E2A_API_KEY,AUTOREPO_APP_ID,AUTOREPO_APP_PRIVATE_KEY); enable Actions; set branch protection so the fix lane's PRs require review. Hand over the exact commands/links — never run the auth yourself. - Open the install as a PR. Branch, commit the scaffolded files, open a PR titled "agentify: install the autonomous-repo feedback loop" that summarizes what each file does and links the setup checklist. Do not merge.
What ships with it
56 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agentify-render.sh 9.6 KB runs code
- examples/e2a/agentify-fix-verify-setup.sh 1.3 KB runs code
- examples/e2a/autonomous-repo.config.yml 2.4 KB
- references/adapters.md 2.4 KB
- references/security-invariants.md 6.2 KB
- references/setup-checklist.md 2.7 KB
- safe-paths.sh 2.9 KB runs code
- templates/addons/README.md 1.1 KB
- templates/addons/submit-feedback-mcp/files/bridge.mjs 3.4 KB runs code
- templates/addons/submit-feedback-mcp/files/bridge.test.mjs 2.9 KB runs code
- templates/addons/submit-feedback-mcp/files/package.json 489 B
- templates/addons/submit-feedback-mcp/files/server.mjs 5.2 KB runs code
- templates/addons/submit-feedback-mcp/manifest.yml 1.4 KB
- templates/addons/submit-feedback-mcp/setup.md 1.7 KB
- templates/autonomous-repo.config.yml.tmpl 5.8 KB
- templates/runtime-skill/comms.md 7.5 KB
- templates/runtime-skill/fix.md 3.5 KB
- templates/runtime-skill/SKILL.md 4.6 KB
- templates/runtime-skill/state-machine.md 3.7 KB
- templates/runtime-skill/templates/approval-request.md 1.1 KB
- templates/runtime-skill/templates/resolved-closed.md 948 B
- templates/runtime-skill/templates/shipped.md 1.0 KB
- templates/runtime-skill/templates/triage-ack.md 1.3 KB
- templates/runtime-skill/ticket-card.md 4.5 KB
- templates/runtime-skill/triage.md 8.6 KB
- templates/scripts/comms_send.sh 4.6 KB runs code
- templates/scripts/released_markers.sh 2.5 KB runs code
- templates/scripts/ticket_card.sh 10 KB runs code
- templates/workflows/feedback-comms.yml.tmpl 6.6 KB
- templates/workflows/feedback-fix.yml.tmpl 8.4 KB
- templates/workflows/feedback-released.yml.tmpl 5.3 KB
- templates/workflows/feedback-triage.yml.tmpl 7.4 KB
- test/fixtures/harness/.gitignore 32 B
- test/fixtures/harness/assert-selftest.sh 1.9 KB runs code
- test/fixtures/harness/mock-comms_send.sh 269 B runs code
- test/fixtures/harness/mock-gh 679 B
- test/fixtures/harness/mock-mcp.mjs 2.5 KB runs code
- test/fixtures/harness/mock-ticket_card.sh 463 B runs code
- test/fixtures/harness/package.json 318 B
- test/fixtures/harness/prompts/triage.txt 317 B
- test/fixtures/harness/runner.sh 3.2 KB runs code
- test/fixtures/README.md 2.2 KB
- test/fixtures/run-fixtures.sh 752 B runs code
- test/fixtures/triage/injection/assert.sh 560 B runs code
- test/fixtures/triage/injection/findbycomms.txt 0 B
- test/fixtures/triage/injection/messages.json 664 B
- test/fixtures/triage/new-feedback/assert.sh 645 B runs code
- test/fixtures/triage/new-feedback/findbycomms.txt 0 B
- test/fixtures/triage/new-feedback/messages.json 619 B
- test/fixtures/triage/reply-skip/assert.sh 542 B runs code
- test/fixtures/triage/reply-skip/findbycomms.txt 3 B
- test/fixtures/triage/reply-skip/messages.json 516 B
- test/permission-contract.test.mjs 4.8 KB runs code
- test/render-config.test.py 1.7 KB runs code
- test/run.sh 5.2 KB runs code
- test/validate.py 3.0 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 100 lines · 93 tokens per session scan A 18bbbefb22f1
agentify is a skill published in the GitHub repository tokencanopy/e2a (184 stars, last pushed yesterday), licensed Apache-2.0. It adds 93 tokens to every session and 1,462 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
commune-email
I give you a real email inbox and let you send, receive, search, and manage email threads programmatically via the Commune API. Every inbox I create is RFC 5322 compliant — replies thread correctly in any email client, including Gmail, Apple Mail, and Outlook.
commune-agent-network
Requires COMMUNEAPIKEY environment variable. Get one at commune.email.
commune-sms
I give you a real phone number and let you send and receive SMS messages programmatically via the Commune API. You can send texts to any number, read conversation threads, and list all your SMS conversations — all from within your OpenClaw agent.
skills
Email API for AI agents. Create inboxes, send/receive email, manage threads and webhooks.
shipmail
Operate Shipmail custom-domain business email, agent inboxes, calendars, booking pages, newsletters, webhooks, and related account resources through the Shipmail MCP server. Use when the user asks to read or triage a Shipmail inbox, draft or send email, reply to a message or thread, manage a mailbox or domain, check…
clawaimail
Email infrastructure for AI agents — create inboxes, send and receive real emails, search messages, manage threads. Alternative to AgentMail with MCP server, REST API, webhooks, and WebSocket streaming.