clavix 5.9.1 → 5.9.2
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/dist/config/integrations.json +1 -1
- package/dist/templates/slash-commands/_canonical/archive.md +1 -1
- package/dist/templates/slash-commands/_canonical/implement.md +1 -1
- package/dist/templates/slash-commands/_canonical/improve.md +1 -1
- package/dist/templates/slash-commands/_canonical/plan.md +1 -1
- package/dist/templates/slash-commands/_canonical/prd.md +1 -1
- package/dist/templates/slash-commands/_canonical/refine.md +1 -1
- package/dist/templates/slash-commands/_canonical/start.md +1 -1
- package/dist/templates/slash-commands/_canonical/summarize.md +1 -1
- package/dist/templates/slash-commands/_canonical/verify.md +1 -1
- package/dist/utils/integration-selector.js +1 -1
- package/package.json +2 -2
|
@@ -354,7 +354,7 @@ The validation ensures generated PRDs are immediately usable for AI consumption
|
|
|
354
354
|
|
|
355
355
|
---
|
|
356
356
|
|
|
357
|
-
## Agent Transparency (v5.9.
|
|
357
|
+
## Agent Transparency (v5.9.2)
|
|
358
358
|
|
|
359
359
|
### Agent Manual (Universal Protocols)
|
|
360
360
|
{{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
|
|
@@ -230,7 +230,7 @@ The goal is natural exploration of requirements, not a rigid questionnaire. Foll
|
|
|
230
230
|
|
|
231
231
|
---
|
|
232
232
|
|
|
233
|
-
## Agent Transparency (v5.9.
|
|
233
|
+
## Agent Transparency (v5.9.2)
|
|
234
234
|
|
|
235
235
|
### Agent Manual (Universal Protocols)
|
|
236
236
|
{{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
|
|
@@ -409,7 +409,7 @@ The `/clavix:summarize` command extracts requirements from exploratory conversat
|
|
|
409
409
|
|
|
410
410
|
---
|
|
411
411
|
|
|
412
|
-
## Agent Transparency (v5.9.
|
|
412
|
+
## Agent Transparency (v5.9.2)
|
|
413
413
|
|
|
414
414
|
### Agent Manual (Universal Protocols)
|
|
415
415
|
{{INCLUDE:agent-protocols/AGENT_MANUAL.md}}
|
|
@@ -35,7 +35,7 @@ export async function selectIntegrations(agentManager, preSelected = []) {
|
|
|
35
35
|
{ name: 'Cline (.cline/workflows/)', value: 'cline' },
|
|
36
36
|
{ name: 'Cursor (.cursor/commands/)', value: 'cursor' },
|
|
37
37
|
{ name: 'Kilocode (.kilo/clavix/)', value: 'kilocode' },
|
|
38
|
-
{ name: 'Roocode (.roo/
|
|
38
|
+
{ name: 'Roocode (.roo/commands/)', value: 'roocode' },
|
|
39
39
|
{ name: 'Windsurf (.windsurf/rules/)', value: 'windsurf' },
|
|
40
40
|
new inquirer.Separator(),
|
|
41
41
|
new inquirer.Separator('=== Optional Universal Adapters ==='),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clavix",
|
|
3
|
-
"version": "5.9.
|
|
3
|
+
"version": "5.9.2",
|
|
4
4
|
"description": "Agentic-first prompt workflows. Markdown templates that teach AI agents how to optimize prompts, create PRDs, and manage implementation.\n\nSLASH COMMANDS (in your AI assistant):\n /clavix:improve Optimize prompts with auto-depth\n /clavix:prd Generate PRD through questions\n /clavix:plan Create task breakdown from PRD\n /clavix:implement Execute tasks with progress tracking\n /clavix:start Begin conversational session\n /clavix:summarize Extract requirements from conversation\n /clavix:refine Refine existing PRD or prompt\n /clavix:verify Verify implementation against requirements\n /clavix:archive Archive completed projects\n\nWorks with Claude Code, Cursor, Windsurf, and 20 AI coding tools.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"@oclif/core": "^4.8.0",
|
|
71
71
|
"@oclif/plugin-help": "^6.2.35",
|
|
72
72
|
"chalk": "^5.6.2",
|
|
73
|
-
"clavix": "^5.9.
|
|
73
|
+
"clavix": "^5.9.2",
|
|
74
74
|
"fs-extra": "^11.3.2",
|
|
75
75
|
"inquirer": "^12.11.1",
|
|
76
76
|
"zod": "^3.24.4"
|