Manage Agent Kit
Treat the checked-out agent-kit repository as the canonical source. Agent
hosts receive views of the same skill directories through symlinks.
Start with evidence
- Run
./bin/agent-kit doctor --strict. - Run
./bin/agent-kit status --profile full-stack --tool core. - Inspect
catalog.jsonbefore proposing changes. - Read references/operations.md for the relevant operation.
Do not silently replace a real directory or a symlink owned by another tool. Report the exact conflict and preserve it.
Install or repair links
Use the smallest applicable profile:
base: only this management skill.developer: source-grounded engineering and agent infrastructure.design: recursive direction branching, UI/UX evidence, and frontend preflight.full-stack: recommended personal workstation.top: every broadly useful skill that passed the full adoption gate.all: compatibility alias fortop.
Preview first:
./bin/agent-kit install --profile full-stack --tool core --dry-run
Then install. Use --replace-managed only for stale symlinks that already
point into this checkout. It must never replace copied files or foreign links.
Curate a new skill
Read the checkout’s
docs/top-skills.md
before broad discovery. It separates adopted, on-demand, and discovery-only
sources.
Accept a skill only when all gates pass:
- It solves a repeated, current task with clear marginal value.
- It does not duplicate a host-provided or already installed capability.
- Its source is attributable, actively maintained, and pinned to a full commit SHA.
- Its redistribution license is explicit. Do not vendor an unlicensed skill.
- Read every executable file and inspect network, credential, and destructive behavior.
- Add it to
catalog.jsonand the narrowest profile. - Run the creator validator when first-party skill instructions change.
- Run the repository tests,
doctor --strict, and the public safety scan. - Install it into the intended hosts and verify every link resolves to the same target.
Record rejected or deferred candidates in docs/skill-selection.md; this keeps
the catalog small without losing the research.
Discover top skills
Treat rankings and awesome lists as candidate generators:
- Search official or product-owned repositories first.
- Use GitHub activity and
skills.shinstalls only as discovery signals. - Identify the narrow skill directory that matches a repeated current need.
- Compare its triggers against the installed catalog.
- Return an adoption, on-demand, watch, or reject decision with evidence.
- Update
docs/top-skills.mdwithout installing anything unless the full curation gate passes.
Never bulk-install a pack because it is popular, official, or listed in the radar.
Update a vendored skill
Run scripts/check_upstreams.py. If an update exists:
- Review upstream commits between the pinned and proposed SHAs.
- Run
scripts/update_vendor.py <skill> --ref <reviewed-full-sha>. - Review the entire vendor diff, especially scripts and dependencies.
- Re-run all validation and security gates.
Never auto-merge upstream skill changes.
Public boundary
Never commit credentials, auth state, transcripts, memories, machine-local overrides, private Brain content, or absolute personal home paths. Public templates may name environment variables but may not contain their values.
Keep model choice, OAuth state, API tokens, and per-machine approvals local. Only portable instructions, skills, hook logic, safe templates, source pins, and license evidence belong here.
Completion criteria
Finish only when:
- repository validation passes;
- no public-boundary finding remains;
- every selected skill is linked into the intended agent directories;
- all managed links resolve to one canonical source;
- conflicts, deferred candidates, radar status, and upstream pins are explicit.