Most "how do I…" answers live in the README; this page covers what isn't documented elsewhere, plus common install issues and the framework's limits.
You can write your own Claude Code skills — nothing stops you. AIDD exists because that setup is work every team repeats and re-debugs alone: the router/action split (Skill glossary entry), the plan → implement → review gating, the plugin packaging and versioning, the multi-tool support (Cursor, Copilot, Codex, OpenCode). AIDD ships that scaffolding pre-built and maintained, so you start from a working SDLC loop and only author the skill content specific to your project. If your workflow doesn't match the framework's shape, CREATE_PLUGIN.md shows how to build on the same scaffolding instead of replacing it.
- Install / first run → Quick start.
- Update plugins →
/plugin marketplace update aidd-framework, or see Versioning & updates. - Private repo? Yes —
/plugin marketplace addjust needs GitHub read access (viagh auth loginor a PAT). - Cursor / Copilot / Codex / OpenCode? Each other tool installs via its own native mechanism (project files, local plugins, or a plugin command) from the release archives. Steps per tool → Other tools.
- Does running plugins cost money? The plugins are MIT-licensed and free; the Claude calls they make consume your Anthropic plan or API balance (per-invocation on a plan, per-token on an API key).
- Disable a plugin without uninstalling? Run
/pluginand toggle it off in the Installed tab, or remove its entry from.claude/settings.jsonenabledPlugins(project scope) or~/.claude/plugins/(user scope).
- What can a plugin do? Is it safe? → Trust and safety and
SECURITY.md. Plugins run commands, edit files, and call services through your AI tool — inspect a plugin'sactions/,hooks/hooks.json, and.mcp.jsonbefore installing. Claude Code asks before tool calls by default. - Report a vulnerability →
SECURITY.md(GitHub Security Advisories; never a public issue).
- Write your own plugin →
CREATE_PLUGIN.md. - File a bug / request a feature → issue templates.
- Community → Discord · website (more in the README).
- Marketplace doesn't show my plugins after
/plugin marketplace add— refresh the cache:/plugin marketplace update aidd-framework, then open/plugin→ Discover. /plugin installsays the plugin is unknown — the marketplace name must match thenamein this repo's.claude-plugin/marketplace.json(aidd-framework). Install with/plugin install <plugin-name>@aidd-framework.- A private repo won't add as a marketplace —
/plugin marketplace addneeds read access; authenticate withgh auth loginor a PAT on the machine running your AI tool. - My new plugin's actions don't load — run
/reload-pluginsin the same session, or restart the tool if a hook config changed.
- Not autonomous by default. Skills run under human supervision; you drive each step.
- Authored for Claude Code. Other tools install via their native mechanism from the release archives (Other tools); public-marketplace publishing is on the way, native parity is a roadmap item.
- Plugins assume their own context. A skill that expects a git repo, a
package.json, or a ticketing tool won't work without it — check the plugin's README. - No hosted service. AIDD is prompt content you install into your own tool; there is no AIDD server, account, or telemetry.
Ask in Discussions or on Discord. For a bug, open an issue. See SUPPORT.md.