
skills-init
Drop a small, opinionated agent skill system into any new project.
skills-init creates a single source of truth at .agents/skills, installs a
portable baseline of high-leverage skills, and symlinks those skills into the
tool-specific folders agents already know how to read:
.claude/skills/<skill> -> ../../.agents/skills/<skill>
.cursor/skills/<skill> -> ../../.agents/skills/<skill>
.codex/skills/<skill> -> ../../.agents/skills/<skill>
.opencode/skills/<skill> -> ../../.agents/skills/<skill>
The idea is simple: your project carries the actual context once, and every agent surface sees the same guidance.
Quick Start
Install the default skill pack in a repo:
npx skills-init
Or preview the writes first:
npx skills-init --dry-run
Useful options:
skills-init --target .
skills-init --target . --dry-run
skills-init --target . --overwrite
skills-init --target . --no-links
skills-init --target . --copy-links
skills-init --list
Package: https://www.npmjs.com/package/skills-init
Repo: https://github.com/EzraApple/skills-init
What It Installs
Default profile: core
.agents/
README.md
skills/
adversarial-review/
SKILL.md
simplify/
SKILL.md
writing-skills/
SKILL.md
mcps/
README.md
.claude/skills/* -> .agents/skills/*
.cursor/skills/* -> .agents/skills/*
.codex/skills/* -> .agents/skills/*
.opencode/skills/* -> .agents/skills/*
.agents/mcps is intentionally just a placeholder today. The package is built
around profiles so MCP setup, tool config, and additional skill packs can be
added later without changing the core installer model.
Included Skills
adversarial-review
High-scrutiny independent review for code, PRs, changed files, plans, or specific paths.
Includes:
- scope selection for PRs, diffs, files, and local changes;
- reviewer lane selection based on risk and user intent;
- correctness, security, architecture, interface, test/ops, and UX lane templates;
- clustering findings by root cause;
- validator passes whose job is to kill weak findings;
- an iterative hardening loop for fix, check, and rerun cycles;
- final report shape with verdict, action items, findings, and coverage.
Use this when you want a skeptical second opinion, not a polite rubber stamp.
writing-skills
The meta-skill for creating and maintaining useful skills.
Includes:
- how to define a skill's job, trigger phrases, audience, and output;
- where skills should live:
.agents/skills, tool links, always-on guidance, scripts, or runtime workspace directories; - frontmatter rules for discoverable
nameanddescription; - guidance for progressive disclosure with
references/,scripts/,templates/, andassets/; - validation levels from lightweight checks to rigorous pressure scenarios;
- anti-patterns like narrative skills, workflow-hidden descriptions, and untested routing changes.
Use this when you are turning repeated agent behavior into durable project context.
simplify
Deletion-first code simplification for agents that tend to add wrappers, helpers, and speculative abstractions.
Includes:
- direct-version-first thinking;
- single-use helper inlining;
- guard-clause and flattening guidance;
- deriving values instead of synchronizing state;
- collapsing parallel code paths;
- one-name-per-concept naming discipline;
- rules for passing objects whole and deleting translation theater;
- near-miss guidance for cases where added lines are still the simpler choice.
Use this after implementation or during review to ask: what can we delete without losing clarity or safety?
Why This Exists
Agent tools are getting better, but new projects still start cold. The same instructions get pasted into prompts, copied between repos, or forgotten until a review goes sideways.
skills-init makes project context explicit and portable:
- skills live in the repo;
- tool-specific folders are generated;
- repeated judgment becomes reusable guidance;
- future MCP and tool setup has a place to grow.
Repo Structure
assets/ README images and package-visible assets
bin/ CLI entrypoint
profiles/ data-driven install profiles
scripts/ package validation scripts
skills/ source skills copied into target projects
src/ installer implementation
templates/ files written into target projects
test/ Node test runner coverage
Local Development
Run from this checkout:
node bin/skills-init.js --target /path/to/project
Run checks:
npm run check
This validates skill frontmatter, runs installer tests, and verifies package
contents with npm pack --dry-run.
Extending
Add a skill:
- Create
skills/<skill-name>/SKILL.md. - Add the skill name to
profiles/core.jsonor a new profile. - Run
npm run check.
Add future MCP support:
- Put MCP templates or descriptors under
templates/or a futuremcps/source directory. - Add profile entries describing when they install.
- Keep writes idempotent.
- Never overwrite user config unless
--overwriteexplicitly allows it.
The installer should stay boring: copy durable source context into .agents,
then generate tool-specific views over that context.
License
MIT
No comments yet
Be the first to share your take.