You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Third and final pass of the multi-specialist audit. Three parallel agents
covered OSS scaffolding, documentation accuracy, and user-navigation UX.
All findings consolidated below.
OSS scaffolding
- .github/FUNDING.yml: custom -> ai-driven-dev.fr.
- .github/CODEOWNERS: default mapping `*` -> @ai-driven-dev/maintainers.
- .github/ISSUE_TEMPLATE/config.yml: blank_issues_enabled=false, three
contact_links (Discord, Website, Security Advisories).
- CODE_OF_CONDUCT.md: enforcement contact updated to conduct@ai-driven-dev.fr.
- SECURITY.md: added security@ai-driven-dev.fr fallback and PGP-on-request
note alongside Security Advisories.
- README.md: 'Maintained by the AI-Driven Dev community' next to founder line.
- CONTRIBUTING.md: new 'CI and external actions' section recommending
SHA-pinned `uses:` entries and Dependabot.
Documentation accuracy
- references/auth-modes.md: rewritten to describe the local poll script
auth (gh CLI session vs env var) instead of the stale auth.source schema.
- references/local-mode-scheduling.md: launchd plist now ships the XML
declaration and DOCTYPE; added 'Rate limits and quotas' section covering
GitHub REST budget and Anthropic plan/API spend.
- README.md: Quick start fence kept as `text` but accompanied by a one-line
note that the blocks are slash commands, not shell. Private-repo caveat
added next to the install block. Demo-gif TODO comment removed.
- CONTRIBUTING.md: tarball content list updated to the plugin-era layout
(plugins/, .claude-plugin/, aidd_docs/); version.txt reference dropped.
- plugins/aidd-context/CATALOG.md: clarified as a per-plugin index, with
a pointer to the framework-wide catalog.
- docs/CATALOG.md: new framework-wide skills catalog generated from
SKILL.md frontmatter (relocated out of aidd_docs/, which is plugin
territory and unstable for marketplace-level docs).
- docs/GLOSSARY.md: new glossary covering 15 terms (skill, action,
router-based skill, SDLC capability, use case, bracket ID, run id,
audit JSON, lifecycle label, working lock, marketplace, plugin, hook,
agent, rule). Cross-linked from the root README.
- README.md Documentation table: links repointed at docs/ and a note added
that aidd_docs/ is project-scoped, generated by aidd-context:02:project-init.
User-navigation UX
- Maturity line added on every plugin README (Status: stable / release
candidate / stable for the active use case + roadmap).
- Quick-start pointer added on every plugin README; routes to the
best-fit first skill (00:onboard for aidd-context, 00:sdlc for
aidd-dev, 01:commit for aidd-vcs, 01:setup-async-dev for orchestrator,
01:brainstorm for refine, 01:ticket-info for aidd-pm).
- Root README: new 'Versioning and updates' section above Trust and
safety; new Status column in the Plugins table; LLM tier reference
collapsed into a <details> block.
- aidd-vcs README: one-line typical-flow hint at the top.
- 6 plugin READMEs and 27 skill READMEs now carry a breadcrumb
navigation line (root <- plugin <- skill).
- CONTRIBUTING.md and aidd_docs cross-links pulled back; aidd_docs is
generated by plugins and is not a stable framework-doc surface.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
# Default reviewers for every change in this repository.
2
+
# GitHub assigns these reviewers automatically when a pull request is opened.
3
+
# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
Copy file name to clipboardExpand all lines: README.md
+30-13Lines changed: 30 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,6 @@
20
20
21
21
</div>
22
22
23
-
<!-- TODO: record a 30-60s demo (label an issue, watch a PR open) and embed as docs/demo.gif. LICEcap or QuickTime + ffmpeg work fine. -->
24
-
25
23
---
26
24
27
25
## What is AI-Driven Dev?
@@ -43,6 +41,10 @@ Inside any Claude Code session, register this marketplace and install a plugin:
43
41
/plugin install aidd-dev@aidd-framework
44
42
```
45
43
44
+
> The blocks above are Claude Code slash commands typed inside a Claude Code session, not shell commands.
45
+
46
+
If the marketplace repo is private, `/plugin marketplace add <owner>/<repo>` requires that you be authenticated with read access to that repo (typically via `gh auth login` or a PAT on the machine running Claude Code). See the Anthropic [Discover and install plugins](https://code.claude.com/docs/en/discover-plugins) docs for the full install flow.
47
+
46
48
That's it. The first command registers `aidd-framework` as a marketplace; the second installs the `aidd-dev` plugin from it. Repeat the `install` line for any other plugin from the catalog below.
47
49
48
50
Prefer browsing? Run `/plugin` inside Claude Code and open the **Discover** tab once the marketplace is registered.
@@ -53,14 +55,14 @@ Prefer browsing? Run `/plugin` inside Claude Code and open the **Discover** tab
Each plugin's README links to per-skill READMEs covering when to use, how to invoke, prerequisites, and outputs.
66
68
@@ -89,6 +91,16 @@ Set scope at install time with the `/plugin` UI, or by editing `enabledPlugins`
89
91
90
92
---
91
93
94
+
## Versioning and updates
95
+
96
+
- Each plugin versions independently via `release-please`. Tags look like `aidd-<plugin>-vX.Y.Z`.
97
+
- The root marketplace (`marketplace.json`) versions independently as `vX.Y.Z`.
98
+
- Pull updates inside Claude Code with `/plugin marketplace update aidd-framework`.
99
+
100
+
See [`CHANGELOG.md`](./CHANGELOG.md) for the full history.
101
+
102
+
---
103
+
92
104
## Trust and safety
93
105
94
106
This is a community-maintained marketplace. Plugins can execute commands, edit files, and call external services on your behalf. Before installing any plugin from any third-party marketplace, including this one:
@@ -105,16 +117,19 @@ If you spot a vulnerability, please report it privately via [SECURITY.md](./SECU
Note: `aidd_docs/` and similar directories generated by `aidd-context:02:project-init` belong to user projects, not to this marketplace. Do not link them from framework-level documentation.
128
+
115
129
---
116
130
117
-
## LLM tier reference
131
+
<details>
132
+
<summary><strong>LLM tier reference</strong> (used by skills that target a specific model tier)</summary>
118
133
119
134
Some skills target a specific model tier when they need a particular capability. Default tier per task type:
120
135
@@ -124,6 +139,8 @@ Some skills target a specific model tier when they need a particular capability.
0 commit comments