@c4a/context-cli 0.6.0-beta.6 → 0.6.0-beta.7
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 +7 -2
- package/cli.js +2305 -1570
- package/package.json +2 -2
- package/plugin/skills/skill-continue-workflow/SKILL.md +4 -0
- package/plugin/skills/skill-prose-align/SKILL.md +7 -6
- package/plugin/skills/skill-prose-compile/SKILL.md +10 -8
- package/plugins/VERSION +1 -1
- package/plugins/claude/.claude-plugin/plugin.json +1 -1
- package/plugins/claude/skills/skill-continue-workflow/SKILL.md +4 -0
- package/plugins/claude/skills/skill-prose-align/SKILL.md +7 -6
- package/plugins/claude/skills/skill-prose-compile/SKILL.md +10 -8
- package/plugins/codex/.codex-plugin/plugin.json +2 -2
- package/plugins/codex/skills/continue/references/internal-procedures/skill-continue-workflow.md +4 -0
- package/plugins/codex/skills/continue/references/internal-procedures/skill-prose-align.md +7 -6
- package/plugins/codex/skills/continue/references/internal-procedures/skill-prose-compile.md +10 -8
- package/plugins/codex/skills/init/references/internal-procedures/skill-continue-workflow.md +4 -0
- package/plugins/codex/skills/init/references/internal-procedures/skill-prose-align.md +7 -6
- package/plugins/codex/skills/init/references/internal-procedures/skill-prose-compile.md +10 -8
- package/plugins/cursor/.cursor-plugin/plugin.json +1 -1
- package/plugins/cursor/skills/skill-continue-workflow/SKILL.md +4 -0
- package/plugins/cursor/skills/skill-prose-align/SKILL.md +7 -6
- package/plugins/cursor/skills/skill-prose-compile/SKILL.md +10 -8
- package/plugins/skills/context-continue/references/internal-procedures/skill-continue-workflow.md +4 -0
- package/plugins/skills/context-continue/references/internal-procedures/skill-prose-align.md +7 -6
- package/plugins/skills/context-continue/references/internal-procedures/skill-prose-compile.md +10 -8
- package/plugins/skills/context-init/references/internal-procedures/skill-continue-workflow.md +4 -0
- package/plugins/skills/context-init/references/internal-procedures/skill-prose-align.md +7 -6
- package/plugins/skills/context-init/references/internal-procedures/skill-prose-compile.md +10 -8
- package/scripts/postinstall.mjs +68 -129
package/README.md
CHANGED
|
@@ -19,8 +19,8 @@ stable protocol text and are not translated.
|
|
|
19
19
|
## Global Plugin + Project Workspace
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
# Install
|
|
23
|
-
|
|
22
|
+
# Install the CLI and refresh available global agent commands/skills.
|
|
23
|
+
npm install -g @c4a/context-cli
|
|
24
24
|
|
|
25
25
|
# Create a standalone context project.
|
|
26
26
|
context init context
|
|
@@ -30,6 +30,11 @@ bun install
|
|
|
30
30
|
/context:continue
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
+
Global installation runs `context plugin install` automatically for the
|
|
34
|
+
available Claude and Codex CLIs. Plugin refresh is best-effort and does not
|
|
35
|
+
make the CLI installation fail; rerun `context plugin install` manually after
|
|
36
|
+
installing an agent CLI. Set `CONTEXT_CLI_SKIP_PLUGIN_INSTALL=1` to opt out.
|
|
37
|
+
|
|
33
38
|
The global plugin calls `context ...` from the current project root.
|
|
34
39
|
Agent commands follow CLI `next:` hints: they execute safe mechanical steps and
|
|
35
40
|
stop at `Human gate:` / placeholder next steps, source registration, source scope
|