@axiomatic-labs/cli 1.6.8 → 1.7.0
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/lib/manifest.js +2 -20
- package/package.json +1 -1
package/lib/manifest.js
CHANGED
|
@@ -2,32 +2,15 @@
|
|
|
2
2
|
// Only these files are managed by init/update. Everything else is user-generated.
|
|
3
3
|
|
|
4
4
|
const TEMPLATE_SKILLS = [
|
|
5
|
-
'
|
|
5
|
+
'cycles',
|
|
6
6
|
'design',
|
|
7
7
|
'review',
|
|
8
8
|
'setup',
|
|
9
|
-
'brand-strategy',
|
|
10
|
-
'competitive-analysis',
|
|
11
|
-
'content-strategy',
|
|
12
|
-
'design-specification',
|
|
13
|
-
'information-architecture',
|
|
14
|
-
'logo-design',
|
|
15
|
-
'ux-wireframes',
|
|
16
|
-
'visual-design-direction',
|
|
17
9
|
];
|
|
18
10
|
|
|
19
11
|
const TEMPLATE_AGENTS = [
|
|
20
|
-
'
|
|
21
|
-
'competitive-analysis.md',
|
|
22
|
-
'content-strategy.md',
|
|
23
|
-
'cro-layout.md',
|
|
24
|
-
'design-mockup.md',
|
|
25
|
-
'design-specification.md',
|
|
12
|
+
'api-health-check.md',
|
|
26
13
|
'generate-skill.md',
|
|
27
|
-
'information-architecture.md',
|
|
28
|
-
'logo-design.md',
|
|
29
|
-
'ux-wireframes.md',
|
|
30
|
-
'visual-design-direction.md',
|
|
31
14
|
];
|
|
32
15
|
|
|
33
16
|
// Build the full list of relative paths that belong to the template
|
|
@@ -35,7 +18,6 @@ function getTemplatePaths() {
|
|
|
35
18
|
const paths = [
|
|
36
19
|
'CLAUDE.md',
|
|
37
20
|
'.claude/settings.json',
|
|
38
|
-
'.claude/docs/quality-gate-protocol.md',
|
|
39
21
|
];
|
|
40
22
|
|
|
41
23
|
for (const skill of TEMPLATE_SKILLS) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axiomatic-labs/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "AI-powered development toolkit for Claude Code. Skills, agents, hooks, and quality gates that ship production apps — not prototypes.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"axiomatic": "./bin/cli.js"
|