Quickstart
Author a skill once and watch it materialize into every enabled harness in about a minute.
1. Initialize a project
Section titled “1. Initialize a project”cd ./my-projectadept initThis creates .adeptability/{skills,base}/, writes .adeptability/config.json, and — if it
finds any pre-existing harness files (.claude/, .cursor/, .opencode/, AGENTS.md,
.github/instructions/) — adopts them into canonical and records the matching harness
ids. It also seeds four bundled default skills:
using-adept— how to drive the CLIauthoring-adept-skills— how to write a good, portable skilladept-self-improve— capture a session lesson as a skill, then sync it everywhereexpertise-exchange— ask teammates for expertise via theadept exchangeboard
Skip the seeds with adept init --no-default-skills.
2. Author a skill
Section titled “2. Author a skill”adept skill add lint-style --editadd scaffolds .adeptability/skills/lint-style/SKILL.md; --edit opens it in $EDITOR.
A skill is YAML frontmatter plus a markdown body:
---id: lint-styledescription: Apply when writing or reviewing code. Enforce the house lint rules.activation: agentallowed-tools: [Read, Grep]---# House style
- Prefer early returns over nested conditionals.- No unused imports.3. Enable harnesses
Section titled “3. Enable harnesses”adept harness add claude-codeadept harness add cursoradept harness list # see every registered harness + enabled state4. Sync
Section titled “4. Sync”adept syncadept renders the canonical skill into each enabled harness’s native format:
.claude/skills/lint-style/SKILL.md # Claude Code.cursor/rules/lint-style.mdc # Cursor (frontmatter translated per activation mode)5. Check state
Section titled “5. Check state”adept statusadept: initialized at /home/you/my-project (mode=symlink)library root: /home/you/.adeptabilitylibraries: (none — project-only mode)skills: 5 in project canonical, 0 resolved from librariesharnesses: ID ENABLED SYNCED DRIFTED MISSING CONFLICT claude-code yes 5 0 0 0 cursor yes 5 0 0 0status exits 2 when anything is out of sync, so scripts and CI can branch on it.
The reverse direction
Section titled “The reverse direction”Edited a skill directly inside a harness file? Pull it back to canonical, then re-publish:
adept sync-from # adopt harness-side edits into canonical (interactive)adept sync # re-render canonical → every harness