cc-codeconductor 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/index.js +6503 -5849
- package/package.json +1 -1
- package/presets/agy/AGENTS.md +1 -0
- package/presets/agy/skills/commit/SKILL.md +0 -4
- package/presets/agy/workflows/cc-council.md +64 -0
package/README.md
CHANGED
|
@@ -18,9 +18,9 @@ contracts, task cards, and risk-based routing.
|
|
|
18
18
|
> - `npx cc-codeconductor init` — detects project stack, writes
|
|
19
19
|
> `.codeconductor/config.yml`, copies `council.yml` and `policy.yml` into
|
|
20
20
|
> `.codeconductor/presets/`
|
|
21
|
-
> - `npx cc-codeconductor install council --target <opencode|claude|codex|all>` —
|
|
21
|
+
> - `npx cc-codeconductor install council --target <opencode|claude|codex|agy|all>` —
|
|
22
22
|
> generates and writes preset files; supports `--global` to install to
|
|
23
|
-
> `~/.opencode/`, `~/.claude/`, `~/.codex/`
|
|
23
|
+
> `~/.opencode/`, `~/.claude/`, `~/.codex/`, `~/.agents/`
|
|
24
24
|
> - `npx cc-codeconductor install lsp --target <opencode|claude|codex|gemini|cursor|agy|all>` —
|
|
25
25
|
> installs LSP servers and configures AI coding tools; auto-detects project
|
|
26
26
|
> languages or use `--lang` to override
|
|
@@ -41,7 +41,7 @@ contracts, task cards, and risk-based routing.
|
|
|
41
41
|
> Core Web Vitals (LCP, TBT, CLS, FCP, TTFB) with framework-specific fixes;
|
|
42
42
|
> requires `PAGESPEED_API_KEY` env var for full CrUX field data (optional but
|
|
43
43
|
> recommended)
|
|
44
|
-
> - `npx cc-codeconductor install preset --target <opencode|claude|codex|all>` —
|
|
44
|
+
> - `npx cc-codeconductor install preset --target <opencode|claude|codex|agy|all>` —
|
|
45
45
|
> installs the full preset (agents, prompts, skills, commands, settings) for the
|
|
46
46
|
> chosen runner; use `--locale=es` to inject Spanish-aware instructions into
|
|
47
47
|
> agent files, or rely on the locale saved during `init`
|
|
@@ -189,6 +189,7 @@ Detected:
|
|
|
189
189
|
npx cc-codeconductor install preset --target opencode # project-level
|
|
190
190
|
npx cc-codeconductor install preset --target claude
|
|
191
191
|
npx cc-codeconductor install preset --target codex
|
|
192
|
+
npx cc-codeconductor install preset --target agy # antigravity cli
|
|
192
193
|
npx cc-codeconductor install preset --target all # all targets
|
|
193
194
|
|
|
194
195
|
npx cc-codeconductor install preset --target claude --global # write to ~/.claude/
|
|
@@ -221,7 +222,8 @@ With `--global`, files are written under `~/` instead of `./`.
|
|
|
221
222
|
npx cc-codeconductor install council --target opencode # project-level
|
|
222
223
|
npx cc-codeconductor install council --target claude
|
|
223
224
|
npx cc-codeconductor install council --target codex
|
|
224
|
-
npx cc-codeconductor install council --target
|
|
225
|
+
npx cc-codeconductor install council --target agy # antigravity cli
|
|
226
|
+
npx cc-codeconductor install council --target all # all targets
|
|
225
227
|
|
|
226
228
|
npx cc-codeconductor install council --target claude --global # write to ~/.claude/
|
|
227
229
|
npx cc-codeconductor install council --target opencode --global
|