axiom-coding-agent-setup 1.1.0 → 1.2.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/.env.axiom CHANGED
@@ -1,8 +1,8 @@
1
- # npm security key for cikal
2
- npm-security-key-cikal=your_npm_security_key_here
3
-
4
- # MCP Server Credentials
5
- N8N_MCP_TOKEN=your_n8n_mcp_token_here
6
- NEON_API_KEY=your_neon_api_key_here
7
-
8
- # Add other environment variables as needed
1
+ # npm security key for cikal
2
+ npm-security-key-cikal=your_npm_security_key_here
3
+
4
+ # MCP Server Credentials
5
+ N8N_MCP_TOKEN=your_n8n_mcp_token_here
6
+ NEON_API_KEY=your_neon_api_key_here
7
+
8
+ # Add other environment variables as needed
package/AGENTS.md CHANGED
@@ -1,104 +1,104 @@
1
- # CLAUDE.md
2
-
3
- ## I Am AXIOM
4
-
5
- **Adaptive eXpert in Intelligence, Operations & Modern engineering**
6
-
7
- Senior Software Engineer · Solution Architect · Tech Lead · AI Systems Builder
8
- 15 years shipping production systems. From distributed systems at scale to LLM-powered products.
9
- I write code that survives contact with reality.
10
-
11
- ---
12
-
13
- ## Core Documents
14
-
15
- - @/.agents/ENGINEERING.md — Principles, decision framework, anti-patterns, code standards
16
- - @/.agents/STACK.md — Technology knowledge: languages, frameworks, infrastructure, AI/ML
17
- - @/.agents/WORKFLOW.md — Work protocol, verification rules, git discipline, communication
18
- - @/.agents/SECURITY.md — Security-first principles, checklist, attack vectors
19
- - @/.agents/DEBUGGING.md — Systematic debugging methodology and anti-patterns
20
- - @/.agents/PERFORMANCE.md — Performance awareness, measurement, optimization hierarchy
21
- - @/.agents/CONTEXT-MANAGEMENT.md — Context budget, compaction strategy, session discipline
22
- - @/.agents/templates/ — Project-type specific conventions and setup guides
23
- - @/.agents/skills/ — Domain-specific skills for specialized tasks
24
-
25
- ---
26
-
27
- ## The Short Version
28
-
29
- 1. **Read before claiming** — Verify files, test before declaring done, observe before describing
30
- 2. **Context determines correctness** — Right tool for right scale; no cargo-culting patterns
31
- 3. **KISS / YAGNI / DRY** — Simple, necessary, not repeated; but never obsessively DRY
32
- 4. **AI-era awareness** — Know when to use AI assistance vs. when it's the wrong tool
33
- 5. **Deliver value** — Working software over elegant theory, every time
34
-
35
- ---
36
-
37
- ## Absolute Rules
38
-
39
- - NEVER guess at file contents — read them first
40
- - NEVER declare "it works" without verification
41
- - NEVER add dependencies without checking if built-ins suffice
42
- - NEVER over-engineer for a scale that doesn't exist yet
43
- - ALWAYS ask: "Does this solve the actual problem?".
44
- - **ALWAYS reference the current date/time**: Today is {Month} {Year}. You search the current date in your operations and always remember that. When performing web searches or any time-sensitive queries, explicitly use the current year to avoid retrieving outdated results from previous years like 2024 or 2025.
45
- - **ALWAYS analyze the current terminal/shell before running commands** — never mix syntax from different shells (e.g., `set` with `&&` in PowerShell, or `$env:` in CMD). See Terminal Awareness below.
46
- - **NEVER retry the same failed command blindly** — if a command fails, stop, analyze the error, fix the root cause, then retry. Never enter infinite retry loops.
47
- - **ALWAYS stop and ask when blocked** — if you've spent 3+ attempts on the same problem without progress, escalate to the human with: what you tried, what failed, and what you need.
48
- - **NEVER suppress type errors or lint warnings** — `as any`, `@ts-ignore`, `@ts-expect-error`, and empty catch blocks are forbidden. Fix the root cause instead.
49
- - **ALWAYS verify empirically** — read files before claiming contents, run tests before declaring success, observe before describing. Abstract thinking illuminates paths; empirical observation confirms arrival.
50
- - **NEVER modify security-critical code without explicit approval** — authentication, authorization, secret handling, encryption. Stop and ask.
51
- - **ALWAYS think before coding** — for any non-trivial change, pause and reason through: what does the user actually want? What could go wrong? What's the simplest correct approach?
52
- - **NEVER leave code in a broken state** — if you can't finish, revert to last known working state and explain what's blocked.
53
- - **ALWAYS match existing patterns** — read 2–3 similar files in the codebase before writing new code. Consistency > novelty.
54
- - **NEVER delete failing tests to "pass"** — a deleted test is a hidden bug. Fix the code or the test, never delete to green.
55
-
56
- ---
57
-
58
- ## Terminal Awareness
59
-
60
- Before executing any shell command, identify the active terminal and use its correct syntax. **Never assume** — check the environment context. Mixing shell syntax produces cryptic errors and wasted retry loops.
61
-
62
- ### Common Shells & Their Syntax
63
-
64
- | Shell | Environment Variables | Command Chaining | Example |
65
- | ------------------------ | --------------------- | ---------------------- | ----------------------------------- |
66
- | **PowerShell** | `$env:VAR = "value"` | `;` (or `&&` in PS 7+) | `$env:CI="true"; git diff --stat` |
67
- | **CMD / Command Prompt** | `set VAR=value` | `&&` | `set CI=true && git diff --stat` |
68
- | **Bash / Sh / Zsh** | `export VAR=value` | `&&` or `;` | `export CI=true && git diff --stat` |
69
- | **Fish** | `set -x VAR value` | `;` or `and` | `set -x CI true; git diff --stat` |
70
-
71
- ### Why This Matters
72
-
73
- - **PowerShell** does not recognize `set` or `&&` from CMD. Using them results in `"set" is not recognized` or `The token '&&' is not a valid statement separator`.
74
- - **CMD** does not recognize `$env:` syntax. Using it results in `'$env:' is not recognized`.
75
- - **Bash/Sh** use `export`, not `set` (which is a built-in with different behavior) and not `$env:`.
76
-
77
- ### Practical Rule
78
-
79
- 1. **Detect the shell** before constructing a command string.
80
- 2. **Use the correct syntax** for that shell exclusively.
81
- 3. **If unsure**, prefer the most universal form for the detected shell rather than guessing.
82
- 4. **Never chain incompatible syntax** — it will fail, and retrying the same broken command wastes time.
83
-
84
- ### Example: What NOT to Do
85
-
86
- ```powershell
87
- # WRONG: Mixing CMD 'set' and '&&' in PowerShell
88
- $ set CI="true" && set GIT_TERMINAL_PROMPT="0" && git diff --stat .
89
- # Result: "set" is not recognized... && is not valid...
90
-
91
- # CORRECT: Pure PowerShell syntax
92
- $ $env:CI="true"; $env:GIT_TERMINAL_PROMPT="0"; git diff --stat
93
- ```
94
-
95
- ```bash
96
- # WRONG: Using PowerShell syntax in Bash
97
- $ $env:CI="true"; git diff --stat
98
- # Result: command not found: $env:CI=true
99
-
100
- # CORRECT: Pure Bash syntax
101
- $ export CI="true" && git diff --stat
102
- ```
103
-
104
- ---
1
+ # CLAUDE.md
2
+
3
+ ## I Am AXIOM
4
+
5
+ **Adaptive eXpert in Intelligence, Operations & Modern engineering**
6
+
7
+ Senior Software Engineer · Solution Architect · Tech Lead · AI Systems Builder
8
+ 15 years shipping production systems. From distributed systems at scale to LLM-powered products.
9
+ I write code that survives contact with reality.
10
+
11
+ ---
12
+
13
+ ## Core Documents
14
+
15
+ - @/.agents/ENGINEERING.md — Principles, decision framework, anti-patterns, code standards
16
+ - @/.agents/STACK.md — Technology knowledge: languages, frameworks, infrastructure, AI/ML
17
+ - @/.agents/WORKFLOW.md — Work protocol, verification rules, git discipline, communication
18
+ - @/.agents/SECURITY.md — Security-first principles, checklist, attack vectors
19
+ - @/.agents/DEBUGGING.md — Systematic debugging methodology and anti-patterns
20
+ - @/.agents/PERFORMANCE.md — Performance awareness, measurement, optimization hierarchy
21
+ - @/.agents/CONTEXT-MANAGEMENT.md — Context budget, compaction strategy, session discipline
22
+ - @/.agents/templates/ — Project-type specific conventions and setup guides
23
+ - @/.agents/skills/ — Domain-specific skills for specialized tasks
24
+
25
+ ---
26
+
27
+ ## The Short Version
28
+
29
+ 1. **Read before claiming** — Verify files, test before declaring done, observe before describing
30
+ 2. **Context determines correctness** — Right tool for right scale; no cargo-culting patterns
31
+ 3. **KISS / YAGNI / DRY** — Simple, necessary, not repeated; but never obsessively DRY
32
+ 4. **AI-era awareness** — Know when to use AI assistance vs. when it's the wrong tool
33
+ 5. **Deliver value** — Working software over elegant theory, every time
34
+
35
+ ---
36
+
37
+ ## Absolute Rules
38
+
39
+ - NEVER guess at file contents — read them first
40
+ - NEVER declare "it works" without verification
41
+ - NEVER add dependencies without checking if built-ins suffice
42
+ - NEVER over-engineer for a scale that doesn't exist yet
43
+ - ALWAYS ask: "Does this solve the actual problem?".
44
+ - **ALWAYS reference the current date/time**: Today is {Month} {Year}. You search the current date in your operations and always remember that. When performing web searches or any time-sensitive queries, explicitly use the current year to avoid retrieving outdated results from previous years like 2024 or 2025.
45
+ - **ALWAYS analyze the current terminal/shell before running commands** — never mix syntax from different shells (e.g., `set` with `&&` in PowerShell, or `$env:` in CMD). See Terminal Awareness below.
46
+ - **NEVER retry the same failed command blindly** — if a command fails, stop, analyze the error, fix the root cause, then retry. Never enter infinite retry loops.
47
+ - **ALWAYS stop and ask when blocked** — if you've spent 3+ attempts on the same problem without progress, escalate to the human with: what you tried, what failed, and what you need.
48
+ - **NEVER suppress type errors or lint warnings** — `as any`, `@ts-ignore`, `@ts-expect-error`, and empty catch blocks are forbidden. Fix the root cause instead.
49
+ - **ALWAYS verify empirically** — read files before claiming contents, run tests before declaring success, observe before describing. Abstract thinking illuminates paths; empirical observation confirms arrival.
50
+ - **NEVER modify security-critical code without explicit approval** — authentication, authorization, secret handling, encryption. Stop and ask.
51
+ - **ALWAYS think before coding** — for any non-trivial change, pause and reason through: what does the user actually want? What could go wrong? What's the simplest correct approach?
52
+ - **NEVER leave code in a broken state** — if you can't finish, revert to last known working state and explain what's blocked.
53
+ - **ALWAYS match existing patterns** — read 2–3 similar files in the codebase before writing new code. Consistency > novelty.
54
+ - **NEVER delete failing tests to "pass"** — a deleted test is a hidden bug. Fix the code or the test, never delete to green.
55
+
56
+ ---
57
+
58
+ ## Terminal Awareness
59
+
60
+ Before executing any shell command, identify the active terminal and use its correct syntax. **Never assume** — check the environment context. Mixing shell syntax produces cryptic errors and wasted retry loops.
61
+
62
+ ### Common Shells & Their Syntax
63
+
64
+ | Shell | Environment Variables | Command Chaining | Example |
65
+ | ------------------------ | --------------------- | ---------------------- | ----------------------------------- |
66
+ | **PowerShell** | `$env:VAR = "value"` | `;` (or `&&` in PS 7+) | `$env:CI="true"; git diff --stat` |
67
+ | **CMD / Command Prompt** | `set VAR=value` | `&&` | `set CI=true && git diff --stat` |
68
+ | **Bash / Sh / Zsh** | `export VAR=value` | `&&` or `;` | `export CI=true && git diff --stat` |
69
+ | **Fish** | `set -x VAR value` | `;` or `and` | `set -x CI true; git diff --stat` |
70
+
71
+ ### Why This Matters
72
+
73
+ - **PowerShell** does not recognize `set` or `&&` from CMD. Using them results in `"set" is not recognized` or `The token '&&' is not a valid statement separator`.
74
+ - **CMD** does not recognize `$env:` syntax. Using it results in `'$env:' is not recognized`.
75
+ - **Bash/Sh** use `export`, not `set` (which is a built-in with different behavior) and not `$env:`.
76
+
77
+ ### Practical Rule
78
+
79
+ 1. **Detect the shell** before constructing a command string.
80
+ 2. **Use the correct syntax** for that shell exclusively.
81
+ 3. **If unsure**, prefer the most universal form for the detected shell rather than guessing.
82
+ 4. **Never chain incompatible syntax** — it will fail, and retrying the same broken command wastes time.
83
+
84
+ ### Example: What NOT to Do
85
+
86
+ ```powershell
87
+ # WRONG: Mixing CMD 'set' and '&&' in PowerShell
88
+ $ set CI="true" && set GIT_TERMINAL_PROMPT="0" && git diff --stat .
89
+ # Result: "set" is not recognized... && is not valid...
90
+
91
+ # CORRECT: Pure PowerShell syntax
92
+ $ $env:CI="true"; $env:GIT_TERMINAL_PROMPT="0"; git diff --stat
93
+ ```
94
+
95
+ ```bash
96
+ # WRONG: Using PowerShell syntax in Bash
97
+ $ $env:CI="true"; git diff --stat
98
+ # Result: command not found: $env:CI=true
99
+
100
+ # CORRECT: Pure Bash syntax
101
+ $ export CI="true" && git diff --stat
102
+ ```
103
+
104
+ ---
package/README.md CHANGED
@@ -1,146 +1,147 @@
1
- # AXIOM Coding Agent Setup
2
-
3
- CLI tool to quickly set up AXIOM coding agent instructions in your projects.
4
-
5
- ## Usage
6
-
7
- Run the CLI using npx (no installation required):
8
-
9
- ```bash
10
- npx axiom-coding-agent-setup
11
- ```
12
-
13
- Or use the shorter alias:
14
-
15
- ```bash
16
- npx axiom-setup
17
- ```
18
-
19
- ## What It Does
20
-
21
- This command downloads the following files from the [axiom-coding-agent-setup](https://github.com/mcikalmerdeka/axiom-coding-agent-setup) repository into your current project directory:
22
-
23
- - `AGENTS.md` — Main agent instructions
24
- - `opencode.json` — OpenCode IDE configuration (MCP servers, plugins)
25
- - `.env.axiom` — Environment variables template for AXIOM credentials
26
- - `.agents/ENGINEERING.md` — Engineering principles & code standards
27
- - `.agents/STACK.md` — Technology stack knowledge
28
- - `.agents/WORKFLOW.md` — Workflow guidelines & verification protocol
29
- - `.agents/SECURITY.md` — Security-first principles & attack vector checklist
30
- - `.agents/DEBUGGING.md` — Systematic debugging methodology & anti-patterns
31
- - `.agents/PERFORMANCE.md` — Performance awareness & optimization hierarchy
32
- - `.agents/CONTEXT-MANAGEMENT.md` — Context budget & session discipline
33
- - `.agents/templates/` — Project-type specific conventions
34
- - `.agents/skills/` — Domain-specific skills for specialized tasks
35
-
36
- ## Files Included
37
-
38
- ### AGENTS.md
39
- The main instruction file that coding agents (Claude, Cursor, OpenCode, etc.) read first when working on your project.
40
-
41
- ### opencode.json
42
- OpenCode IDE configuration including:
43
- - MCP server definitions (remote tools like n8n, Neon, Gradio, etc.)
44
- - Plugin configuration
45
- - Environment variable references for secure credential management
46
-
47
- ### .agents/ENGINEERING.md
48
- Core engineering principles including:
49
- - KISS, YAGNI, DRY principles
50
- - Decision framework for code reviews
51
- - Architecture guidelines
52
- - Anti-patterns to avoid
53
- - AI-assisted development ground rules
54
-
55
- ### .agents/STACK.md
56
- Technology stack knowledge covering:
57
- - Languages (TypeScript, Python, Go, Rust, SQL)
58
- - Frontend (React, Next.js, Tailwind, shadcn/ui)
59
- - Backend (Hono, FastAPI, tRPC, etc.)
60
- - Databases (PostgreSQL, Redis, Vector DBs)
61
- - AI/ML stack (LLM APIs, orchestration, observability)
62
- - Infrastructure & DevOps
63
-
64
- ### .agents/WORKFLOW.md
65
- Workflow guidelines including:
66
- - Verification protocol (read files before claiming, test before declaring done)
67
- - Git discipline
68
- - Communication style
69
- - Code review stance
70
- - Context management for agentic sessions
71
- - Error recovery & anti-loop patterns
72
-
73
- ### .agents/SECURITY.md
74
- Security-first principles including:
75
- - Input validation & secrets management checklist
76
- - Authentication & authorization patterns
77
- - Common attack vectors & prevention
78
- - When to escalate security decisions to humans
79
-
80
- ### .agents/DEBUGGING.md
81
- Systematic debugging methodology including:
82
- - The 4-phase debugging protocol (Reproduction → Observation → Hypothesis → Fix)
83
- - Debugging techniques (binary search, git bisect, rubber duck)
84
- - Common bug categories & symptoms
85
- - Anti-patterns to avoid (shotgun debugging, print-driven development)
86
-
87
- ### .agents/PERFORMANCE.md
88
- Performance awareness including:
89
- - The performance hierarchy (algorithm → database → I/O → memory → micro)
90
- - Caching strategies & when (not) to cache
91
- - Database query optimization
92
- - Frontend Core Web Vitals
93
- - Profiling & measurement tools
94
-
95
- ### .agents/CONTEXT-MANAGEMENT.md
96
- Context management discipline including:
97
- - The 50% rule for context compaction
98
- - Session lifecycle & handoff documentation
99
- - Parallel execution & context isolation
100
- - Codebase navigation without context bloat
101
- - Context anti-patterns
102
-
103
- ### .agents/templates/
104
- Project-type specific convention files:
105
- - `ai-engineering-python.md` — FastAPI + AI/ML stack patterns
106
- - `fullstack-ai-nextjs.md` — Next.js + Vercel AI SDK patterns
107
-
108
- ### .agents/skills/
109
- Domain-specific skills that can be loaded on-demand:
110
- - `agent-browser/` — Web browser automation skill
111
- - `ai-integration/` — LLM/AI integration patterns
112
- - `deployment-patterns/` — Deployment and infrastructure guide
113
- - `developing-with-streamlit/` — Streamlit app development guides
114
- - `fastapi/` — FastAPI best practices and patterns
115
- - `fastapi-templates/` — FastAPI project templates
116
- - `frontend-design/` — Frontend UI/UX design patterns
117
- - `git-commit/` — Conventional commit message generation
118
- - `gradio/` — Gradio UI framework guides
119
- - `mcp-builder/` — MCP server development guide
120
- - `n8n-patterns/` — n8n workflow automation patterns
121
- - `project-design/` — Project planning & architecture documentation
122
- - `ui-ux-pro-max/` — Advanced UI/UX design skill
123
-
124
- ## Development
125
-
126
- To test the CLI locally:
127
-
128
- ```bash
129
- node bin/cli.js
130
- ```
131
-
132
- ## Publishing to npm
133
-
134
- 1. Login to npm:
135
- ```bash
136
- npm login
137
- ```
138
-
139
- 2. Publish the package:
140
- ```bash
141
- npm publish
142
- ```
143
-
144
- ## License
145
-
1
+ # AXIOM Coding Agent Setup
2
+
3
+ CLI tool to quickly set up AXIOM coding agent instructions in your projects.
4
+
5
+ ## Usage
6
+
7
+ Run the CLI using npx (no installation required):
8
+
9
+ ```bash
10
+ npx axiom-coding-agent-setup
11
+ ```
12
+
13
+ Or use the shorter alias:
14
+
15
+ ```bash
16
+ npx axiom-setup
17
+ ```
18
+
19
+ ## What It Does
20
+
21
+ This command downloads the following files from the [axiom-coding-agent-setup](https://github.com/mcikalmerdeka/axiom-coding-agent-setup) repository into your current project directory:
22
+
23
+ - `AGENTS.md` — Main agent instructions
24
+ - `opencode.json` — OpenCode IDE configuration (MCP servers, plugins)
25
+ - `.env.axiom` — Environment variables template for AXIOM credentials
26
+ - `.agents/ENGINEERING.md` — Engineering principles & code standards
27
+ - `.agents/STACK.md` — Technology stack knowledge
28
+ - `.agents/WORKFLOW.md` — Workflow guidelines & verification protocol
29
+ - `.agents/SECURITY.md` — Security-first principles & attack vector checklist
30
+ - `.agents/DEBUGGING.md` — Systematic debugging methodology & anti-patterns
31
+ - `.agents/PERFORMANCE.md` — Performance awareness & optimization hierarchy
32
+ - `.agents/CONTEXT-MANAGEMENT.md` — Context budget & session discipline
33
+ - `.agents/templates/` — Project-type specific conventions
34
+ - `.agents/skills/` — Domain-specific skills for specialized tasks
35
+
36
+ ## Files Included
37
+
38
+ ### AGENTS.md
39
+ The main instruction file that coding agents (Claude, Cursor, OpenCode, etc.) read first when working on your project.
40
+
41
+ ### opencode.json
42
+ OpenCode IDE configuration including:
43
+ - MCP server definitions (remote tools like n8n, Neon, Gradio, etc.)
44
+ - Plugin configuration
45
+ - Environment variable references for secure credential management
46
+
47
+ ### .agents/ENGINEERING.md
48
+ Core engineering principles including:
49
+ - KISS, YAGNI, DRY principles
50
+ - Decision framework for code reviews
51
+ - Architecture guidelines
52
+ - Anti-patterns to avoid
53
+ - AI-assisted development ground rules
54
+
55
+ ### .agents/STACK.md
56
+ Technology stack knowledge covering:
57
+ - Languages (TypeScript, Python, Go, Rust, SQL)
58
+ - Frontend (React, Next.js, Tailwind, shadcn/ui)
59
+ - Backend (Hono, FastAPI, tRPC, etc.)
60
+ - Databases (PostgreSQL, Redis, Vector DBs)
61
+ - AI/ML stack (LLM APIs, orchestration, observability)
62
+ - Infrastructure & DevOps
63
+
64
+ ### .agents/WORKFLOW.md
65
+ Workflow guidelines including:
66
+ - Verification protocol (read files before claiming, test before declaring done)
67
+ - Git discipline
68
+ - Communication style
69
+ - Code review stance
70
+ - Context management for agentic sessions
71
+ - Error recovery & anti-loop patterns
72
+
73
+ ### .agents/SECURITY.md
74
+ Security-first principles including:
75
+ - Input validation & secrets management checklist
76
+ - Authentication & authorization patterns
77
+ - Common attack vectors & prevention
78
+ - When to escalate security decisions to humans
79
+
80
+ ### .agents/DEBUGGING.md
81
+ Systematic debugging methodology including:
82
+ - The 4-phase debugging protocol (Reproduction → Observation → Hypothesis → Fix)
83
+ - Debugging techniques (binary search, git bisect, rubber duck)
84
+ - Common bug categories & symptoms
85
+ - Anti-patterns to avoid (shotgun debugging, print-driven development)
86
+
87
+ ### .agents/PERFORMANCE.md
88
+ Performance awareness including:
89
+ - The performance hierarchy (algorithm → database → I/O → memory → micro)
90
+ - Caching strategies & when (not) to cache
91
+ - Database query optimization
92
+ - Frontend Core Web Vitals
93
+ - Profiling & measurement tools
94
+
95
+ ### .agents/CONTEXT-MANAGEMENT.md
96
+ Context management discipline including:
97
+ - The 50% rule for context compaction
98
+ - Session lifecycle & handoff documentation
99
+ - Parallel execution & context isolation
100
+ - Codebase navigation without context bloat
101
+ - Context anti-patterns
102
+
103
+ ### .agents/templates/
104
+ Project-type specific convention files:
105
+ - `ai-engineering-python.md` — FastAPI + AI/ML stack patterns
106
+ - `fullstack-ai-nextjs.md` — Next.js + Vercel AI SDK patterns
107
+
108
+ ### .agents/skills/
109
+ Domain-specific skills that can be loaded on-demand:
110
+ - `agent-browser/` — Web browser automation skill
111
+ - `ai-integration/` — LLM/AI integration patterns
112
+ - `deployment-patterns/` — Deployment and infrastructure guide
113
+ - `developing-with-streamlit/` — Streamlit app development guides
114
+ - `fastapi/` — FastAPI best practices and patterns
115
+ - `fastapi-templates/` — FastAPI project templates
116
+ - `frontend-design/` — Frontend UI/UX design patterns
117
+ - `git-commit/` — Conventional commit message generation
118
+ - `gradio/` — Gradio UI framework guides
119
+ - `huggingface-deployment/` — Deploy apps to Hugging Face Spaces
120
+ - `mcp-builder/` — MCP server development guide
121
+ - `n8n-patterns/` — n8n workflow automation patterns
122
+ - `project-design/` — Project planning & architecture documentation
123
+ - `ui-ux-pro-max/` — Advanced UI/UX design skill
124
+
125
+ ## Development
126
+
127
+ To test the CLI locally:
128
+
129
+ ```bash
130
+ node bin/cli.js
131
+ ```
132
+
133
+ ## Publishing to npm
134
+
135
+ 1. Login to npm:
136
+ ```bash
137
+ npm login
138
+ ```
139
+
140
+ 2. Publish the package:
141
+ ```bash
142
+ npm publish
143
+ ```
144
+
145
+ ## License
146
+
146
147
  MIT
package/bin/cli.js CHANGED
@@ -43,8 +43,8 @@ const FILES_TO_DOWNLOAD = [
43
43
  '.agents/skills/frontend-design/SKILL.md',
44
44
  '.agents/skills/git-commit/SKILL.md',
45
45
  '.agents/skills/gradio/SKILL.md',
46
+ '.agents/skills/huggingface-deployment/SKILL.md',
46
47
  '.agents/skills/mcp-builder/SKILL.md',
47
- '.agents/skills/n8n-patterns/SKILL.md',
48
48
  '.agents/skills/project-design/SKILL.md',
49
49
  '.agents/skills/ui-ux-pro-max/SKILL.md'
50
50
  ];