@musashishao/agent-kit 1.1.3 → 1.1.5

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.

Potentially problematic release.


This version of @musashishao/agent-kit might be problematic. Click here for more details.

@@ -29,6 +29,6 @@
29
29
  1. Tokenize user request
30
30
  2. Extract keywords
31
31
  3. Determine project type
32
- 4. Detect missing information → forward to conversation-manager
32
+ 4. Detect missing information → forward to brainstorming skill
33
33
  5. Suggest tech stack
34
34
  ```
@@ -16,7 +16,7 @@ This command starts a new application creation process.
16
16
 
17
17
  1. **Request Analysis**
18
18
  - Understand what the user wants
19
- - If information is missing, use `conversation-manager` skill to ask
19
+ - If information is missing, use `brainstorming` skill to ask clarifying questions
20
20
 
21
21
  2. **Project Planning**
22
22
  - Use `project-planner` agent for task breakdown
package/README.md CHANGED
@@ -85,17 +85,49 @@ Rules in `.agent/rules/` are automatically applied. The main configuration file
85
85
  | Command | Description |
86
86
  |---------|-------------|
87
87
  | `agent-kit init` | Install `.agent` folder into your project |
88
+ | `agent-kit setup-codex` | Sync workflows with Codex CLI slash commands |
88
89
  | `agent-kit update` | Update to the latest version |
89
90
  | `agent-kit status` | Check installation status |
90
91
 
91
92
  ### Options
92
93
 
93
94
  ```bash
94
- agent-kit init --force # Overwrite existing .agent folder
95
- agent-kit init --path ./myapp # Install in specific directory
96
- agent-kit init --quiet # Suppress output
95
+ agent-kit init --force # Overwrite existing .agent folder
96
+ agent-kit init --path ./myapp # Install in specific directory
97
+ agent-kit setup-codex --prefix my- # Custom prefix for slash commands
98
+ agent-kit init --quiet # Suppress output
97
99
  ```
98
100
 
101
+ ## 🔗 Multi-Platform Support
102
+
103
+ Agent Kit works with multiple AI coding assistants:
104
+
105
+ | Platform | Config | Setup |
106
+ |----------|--------|-------|
107
+ | **Codex CLI** | `AGENTS.md` | `npx @musashishao/agent-kit setup-codex` |
108
+ | **Gemini CLI** | `.gemini/settings.json` | `{ "contextFileName": ".agent/rules/GEMINI.md" }` |
109
+ | **Cursor** | `.cursor/rules` | Copy from `.agent/rules/` |
110
+ | **Aider** | `.aider.conf.yml` | `read: AGENTS.md` |
111
+
112
+ ### Codex CLI Integration
113
+
114
+ After installing Agent Kit, integrate with OpenAI Codex CLI:
115
+
116
+ ```bash
117
+ # Step 1: Install Agent Kit
118
+ npx @musashishao/agent-kit init
119
+
120
+ # Step 2: Sync workflows to Codex CLI
121
+ npx @musashishao/agent-kit setup-codex
122
+ ```
123
+
124
+ Now you can use Agent Kit workflows as slash commands in Codex:
125
+ - `/kit-create` - Create new apps
126
+ - `/kit-debug` - Debug issues
127
+ - `/kit-brainstorm` - Explore options
128
+ - ... and all 12 workflows!
129
+
99
130
  ## License
100
131
 
101
132
  MIT © Musa (musashishao)
133
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@musashishao/agent-kit",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "AI Agent templates - Skills, Agents, and Workflows for enhanced coding assistance",
5
5
  "main": "index.js",
6
6
  "bin": {