@agiflowai/scaffold-mcp 1.0.7 → 1.0.8
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 +199 -201
- package/dist/cli.cjs +1 -1
- package/dist/cli.mjs +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,82 +1,33 @@
|
|
|
1
1
|
# @agiflowai/scaffold-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> MCP server for scaffolding applications with templates and feature generators
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Generate consistent, convention-following code for your AI coding agents. scaffold-mcp provides templates for common patterns (routes, components, services) so agents don't write boilerplate from scratch.
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
- **Feature scaffolding**: Add features to existing projects with custom generators
|
|
9
|
-
- **Custom generators**: Template-specific TypeScript generators for advanced scaffolding logic
|
|
10
|
-
- **Liquid templating**: Use powerful templating engine for dynamic file generation
|
|
11
|
-
- **Variable replacement**: Customize generated code with context-aware variable substitution
|
|
12
|
-
- **Dynamic template discovery**: Automatically finds templates in your workspace
|
|
13
|
-
- **Multiple frameworks**: Support for Next.js, Vite React, and custom boilerplates
|
|
14
|
-
- **Multiple modes**: MCP server mode (stdio/HTTP/SSE) and standalone CLI mode
|
|
15
|
-
- **MCP integration**: Seamlessly works with Claude Code and other MCP-compatible clients
|
|
7
|
+
## Why Use This?
|
|
16
8
|
|
|
17
|
-
|
|
9
|
+
When you ask an AI agent to "add a new page," it generates working code—but not necessarily code that follows your team's patterns. scaffold-mcp solves this by:
|
|
18
10
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
11
|
+
1. **Providing templates** for common patterns your team has standardized
|
|
12
|
+
2. **Enforcing structure** so every route, component, or service looks the same
|
|
13
|
+
3. **Reducing boilerplate** by generating the repetitive parts automatically
|
|
22
14
|
|
|
23
|
-
|
|
15
|
+
Think of it as "Rails generators" or "Angular schematics" for any stack.
|
|
24
16
|
|
|
25
|
-
|
|
17
|
+
---
|
|
26
18
|
|
|
27
|
-
|
|
19
|
+
## Quick Start
|
|
28
20
|
|
|
29
|
-
|
|
21
|
+
### 1. Install Templates
|
|
30
22
|
|
|
31
23
|
```bash
|
|
32
|
-
#
|
|
33
|
-
npx @agiflowai/
|
|
34
|
-
|
|
35
|
-
# HTTP transport - for web applications
|
|
36
|
-
npx @agiflowai/scaffold-mcp mcp-serve --type http --port 3000
|
|
37
|
-
|
|
38
|
-
# SSE transport - for legacy clients
|
|
39
|
-
npx @agiflowai/scaffold-mcp mcp-serve --type sse --port 3000
|
|
40
|
-
|
|
41
|
-
# Enable admin mode (template generation tools)
|
|
42
|
-
npx @agiflowai/scaffold-mcp mcp-serve --admin-enable
|
|
24
|
+
# Downloads built-in templates to your workspace
|
|
25
|
+
npx @agiflowai/aicode-toolkit init
|
|
43
26
|
```
|
|
44
27
|
|
|
45
|
-
|
|
46
|
-
- `-t, --type <type>`: Transport type: `stdio`, `http`, or `sse` (default: `stdio`)
|
|
47
|
-
- `-p, --port <port>`: Port for HTTP/SSE servers (default: `3000`)
|
|
48
|
-
- `--host <host>`: Host to bind to for HTTP/SSE (default: `localhost`)
|
|
49
|
-
- `--admin-enable`: Enable admin tools for template generation
|
|
50
|
-
|
|
51
|
-
#### Claude Code Configuration
|
|
28
|
+
### 2. Configure Your AI Agent
|
|
52
29
|
|
|
53
|
-
Add to your
|
|
54
|
-
|
|
55
|
-
```json
|
|
56
|
-
{
|
|
57
|
-
"mcpServers": {
|
|
58
|
-
"scaffold-mcp": {
|
|
59
|
-
"command": "npx",
|
|
60
|
-
"args": ["-y", "@agiflowai/scaffold-mcp", "mcp-serve"]
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
Or if installed globally:
|
|
67
|
-
|
|
68
|
-
```json
|
|
69
|
-
{
|
|
70
|
-
"mcpServers": {
|
|
71
|
-
"scaffold-mcp": {
|
|
72
|
-
"command": "scaffold-mcp",
|
|
73
|
-
"args": ["mcp-serve"]
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
**To enable admin tools** (for template creation), add the `--admin-enable` flag:
|
|
30
|
+
Add to your MCP config (`.mcp.json`, `.cursor/mcp.json`, etc.):
|
|
80
31
|
|
|
81
32
|
```json
|
|
82
33
|
{
|
|
@@ -89,198 +40,245 @@ Or if installed globally:
|
|
|
89
40
|
}
|
|
90
41
|
```
|
|
91
42
|
|
|
92
|
-
|
|
43
|
+
**Flags:**
|
|
44
|
+
- `--admin-enable`: Enables tools for creating new templates (optional, useful during setup)
|
|
93
45
|
|
|
94
|
-
|
|
46
|
+
### 3. Start Using
|
|
95
47
|
|
|
96
|
-
|
|
48
|
+
Your AI agent now has access to scaffolding tools:
|
|
97
49
|
|
|
98
|
-
|
|
50
|
+
```
|
|
51
|
+
You: "Create a new Next.js app called dashboard"
|
|
52
|
+
Agent: [calls list-boilerplates, then use-boilerplate]
|
|
99
53
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
"hooks": {
|
|
103
|
-
"PreToolUse": [
|
|
104
|
-
{
|
|
105
|
-
"matcher": "Write",
|
|
106
|
-
"hooks": [
|
|
107
|
-
{
|
|
108
|
-
"type": "command",
|
|
109
|
-
"command": "npx @agiflowai/scaffold-mcp hook --type claude-code.preToolUse"
|
|
110
|
-
}
|
|
111
|
-
]
|
|
112
|
-
}
|
|
113
|
-
],
|
|
114
|
-
"PostToolUse": [
|
|
115
|
-
{
|
|
116
|
-
"matcher": "mcp__one-mcp__use_tool",
|
|
117
|
-
"hooks": [
|
|
118
|
-
{
|
|
119
|
-
"type": "command",
|
|
120
|
-
"command": "npx @agiflowai/scaffold-mcp hook --type claude-code.postToolUse"
|
|
121
|
-
}
|
|
122
|
-
]
|
|
123
|
-
}
|
|
124
|
-
]
|
|
125
|
-
}
|
|
126
|
-
}
|
|
54
|
+
You: "Add a products page"
|
|
55
|
+
Agent: [calls list-scaffolding-methods, then use-scaffold-method]
|
|
127
56
|
```
|
|
128
57
|
|
|
129
|
-
|
|
58
|
+
---
|
|
130
59
|
|
|
131
|
-
|
|
60
|
+
## Available Tools
|
|
132
61
|
|
|
133
|
-
|
|
62
|
+
### Standard Tools
|
|
134
63
|
|
|
135
|
-
|
|
136
|
-
|
|
64
|
+
| Tool | Purpose | When to Use |
|
|
65
|
+
|------|---------|-------------|
|
|
66
|
+
| `list-boilerplates` | Show available project templates | Starting a new project |
|
|
67
|
+
| `use-boilerplate` | Create project from template | After choosing a template |
|
|
68
|
+
| `list-scaffolding-methods` | Show features for a project | Adding to existing project |
|
|
69
|
+
| `use-scaffold-method` | Add feature to project | After choosing a feature |
|
|
70
|
+
| `write-to-file` | Write content to file | Custom files not in templates |
|
|
137
71
|
|
|
138
|
-
|
|
139
|
-
- Arguments:
|
|
140
|
-
- `boilerplateName` (string): Name of the boilerplate
|
|
141
|
-
- `variables` (object): Variables matching the boilerplate's schema
|
|
72
|
+
### Admin Tools (with `--admin-enable`)
|
|
142
73
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
74
|
+
| Tool | Purpose | When to Use |
|
|
75
|
+
|------|---------|-------------|
|
|
76
|
+
| `generate-boilerplate` | Create new project template | Building custom templates |
|
|
77
|
+
| `generate-feature-scaffold` | Create new feature scaffold | Adding feature generators |
|
|
78
|
+
| `generate-boilerplate-file` | Add files to templates | Populating template files |
|
|
146
79
|
|
|
147
|
-
|
|
148
|
-
- Arguments:
|
|
149
|
-
- `projectPath` (string): Absolute path to project directory
|
|
150
|
-
- `scaffold_feature_name` (string): Name of the feature to add
|
|
151
|
-
- `variables` (object): Variables for the feature
|
|
80
|
+
---
|
|
152
81
|
|
|
153
|
-
|
|
154
|
-
- Arguments:
|
|
155
|
-
- `file_path` (string): Path to the file
|
|
156
|
-
- `content` (string): Content to write
|
|
82
|
+
## How It Works
|
|
157
83
|
|
|
158
|
-
|
|
84
|
+
```
|
|
85
|
+
Your Project Templates Directory
|
|
86
|
+
───────────── ───────────────────
|
|
87
|
+
apps/
|
|
88
|
+
├── my-app/ templates/
|
|
89
|
+
│ ├── project.json ──────────────► └── nextjs-15/
|
|
90
|
+
│ │ └── sourceTemplate: "nextjs-15" ├── scaffold.yaml ← Defines what can be generated
|
|
91
|
+
│ └── src/ ├── architect.yaml ← Design patterns (optional)
|
|
92
|
+
│ └── app/ ├── RULES.yaml ← Coding rules (optional)
|
|
93
|
+
│ └── page.tsx └── src/ ← Template files (.liquid)
|
|
94
|
+
```
|
|
159
95
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
- `boilerplateName` (string): Name of the boilerplate (kebab-case)
|
|
164
|
-
- `description` (string): Detailed description
|
|
165
|
-
- `targetFolder` (string): Target folder for projects
|
|
166
|
-
- `variables` (array): Variable definitions with schema
|
|
167
|
-
- `includes` (array): Template files to include
|
|
168
|
-
- `instruction` (string, optional): Usage instructions
|
|
96
|
+
1. **Templates define patterns**: Each template has a `scaffold.yaml` that defines boilerplates and features
|
|
97
|
+
2. **Projects reference templates**: Your `project.json` has a `sourceTemplate` field pointing to the template
|
|
98
|
+
3. **Tools generate code**: MCP tools read the template and generate files in your project
|
|
169
99
|
|
|
170
|
-
|
|
171
|
-
- Arguments:
|
|
172
|
-
- `templateName` (string): Name of the template folder
|
|
173
|
-
- `featureName` (string): Name of the feature (kebab-case)
|
|
174
|
-
- `description` (string): Feature description
|
|
175
|
-
- `variables` (array): Variable definitions with schema
|
|
176
|
-
- `includes` (array, optional): Template files to include
|
|
177
|
-
- `patterns` (array, optional): File patterns this feature works with
|
|
178
|
-
- `instruction` (string, optional): Usage instructions
|
|
100
|
+
---
|
|
179
101
|
|
|
180
|
-
|
|
181
|
-
- Arguments:
|
|
182
|
-
- `templateName` (string): Name of the template folder
|
|
183
|
-
- `filePath` (string): Path of the file within the template
|
|
184
|
-
- `content` (string): File content with Liquid variables
|
|
185
|
-
- `header` (string, optional): Header comment for AI hints
|
|
186
|
-
- `sourceFile` (string, optional): Copy from existing source file
|
|
102
|
+
## Built-in Templates
|
|
187
103
|
|
|
188
|
-
|
|
104
|
+
| Template | Stack | What You Can Generate |
|
|
105
|
+
|----------|-------|----------------------|
|
|
106
|
+
| `nextjs-15-drizzle` | Next.js 15 + App Router | Pages, layouts, components, API routes |
|
|
107
|
+
| `typescript-lib` | TypeScript library | Library structure, tests |
|
|
108
|
+
| `typescript-mcp-package` | MCP server | CLI commands, MCP tools |
|
|
189
109
|
|
|
190
|
-
|
|
110
|
+
---
|
|
191
111
|
|
|
192
|
-
|
|
112
|
+
## CLI Commands
|
|
193
113
|
|
|
194
|
-
|
|
114
|
+
scaffold-mcp also works as a standalone CLI:
|
|
195
115
|
|
|
196
116
|
```bash
|
|
197
117
|
# List available boilerplates
|
|
198
|
-
scaffold-mcp boilerplate list
|
|
118
|
+
npx @agiflowai/scaffold-mcp boilerplate list
|
|
199
119
|
|
|
200
|
-
#
|
|
201
|
-
scaffold-mcp boilerplate info
|
|
120
|
+
# Get info about a boilerplate
|
|
121
|
+
npx @agiflowai/scaffold-mcp boilerplate info nextjs-15-drizzle
|
|
202
122
|
|
|
203
123
|
# Create project from boilerplate
|
|
204
|
-
scaffold-mcp boilerplate create
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
124
|
+
npx @agiflowai/scaffold-mcp boilerplate create nextjs-15-drizzle \
|
|
125
|
+
--vars '{"projectName":"my-app","packageName":"@myorg/my-app"}'
|
|
126
|
+
|
|
127
|
+
# List features for a project
|
|
128
|
+
npx @agiflowai/scaffold-mcp scaffold list ./apps/my-app
|
|
129
|
+
|
|
130
|
+
# Add feature to project
|
|
131
|
+
npx @agiflowai/scaffold-mcp scaffold add scaffold-nextjs-page \
|
|
132
|
+
--project ./apps/my-app \
|
|
133
|
+
--vars '{"pageTitle":"About","nextjsPagePath":"/about"}'
|
|
208
134
|
```
|
|
209
135
|
|
|
210
|
-
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Server Options
|
|
211
139
|
|
|
212
140
|
```bash
|
|
213
|
-
#
|
|
214
|
-
scaffold-mcp
|
|
141
|
+
# stdio transport (default) - for Claude Code, Cursor
|
|
142
|
+
npx @agiflowai/scaffold-mcp mcp-serve
|
|
215
143
|
|
|
216
|
-
#
|
|
217
|
-
scaffold-mcp
|
|
144
|
+
# HTTP transport - for web applications
|
|
145
|
+
npx @agiflowai/scaffold-mcp mcp-serve --type http --port 3000
|
|
218
146
|
|
|
219
|
-
#
|
|
220
|
-
scaffold-mcp
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
--verbose
|
|
147
|
+
# SSE transport - for streaming clients
|
|
148
|
+
npx @agiflowai/scaffold-mcp mcp-serve --type sse --port 3000
|
|
149
|
+
|
|
150
|
+
# With admin tools enabled
|
|
151
|
+
npx @agiflowai/scaffold-mcp mcp-serve --admin-enable
|
|
225
152
|
```
|
|
226
153
|
|
|
227
|
-
|
|
154
|
+
| Option | Description | Default |
|
|
155
|
+
|--------|-------------|---------|
|
|
156
|
+
| `-t, --type` | Transport: `stdio`, `http`, `sse` | `stdio` |
|
|
157
|
+
| `-p, --port` | Port for HTTP/SSE | `3000` |
|
|
158
|
+
| `--host` | Host for HTTP/SSE | `localhost` |
|
|
159
|
+
| `--admin-enable` | Enable template creation tools | `false` |
|
|
228
160
|
|
|
229
|
-
|
|
230
|
-
- `MCP_HOST`: Host for HTTP/SSE servers (default: localhost)
|
|
161
|
+
---
|
|
231
162
|
|
|
232
|
-
##
|
|
163
|
+
## Creating Custom Templates
|
|
233
164
|
|
|
234
|
-
### 1
|
|
165
|
+
### Option 1: Using Admin Tools (Recommended)
|
|
235
166
|
|
|
236
|
-
|
|
167
|
+
Ask your AI agent:
|
|
168
|
+
```
|
|
169
|
+
"Create a boilerplate template for our React + Vite setup"
|
|
170
|
+
```
|
|
237
171
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
172
|
+
The agent will use:
|
|
173
|
+
1. `generate-boilerplate` - Creates scaffold.yaml entry
|
|
174
|
+
2. `generate-boilerplate-file` - Adds template files
|
|
241
175
|
|
|
242
|
-
|
|
243
|
-
npx @agiflowai/aicode-toolkit add --name my-template --url https://github.com/user/template
|
|
244
|
-
```
|
|
176
|
+
### Option 2: Manually
|
|
245
177
|
|
|
246
|
-
|
|
178
|
+
Create the template structure:
|
|
247
179
|
|
|
248
|
-
|
|
180
|
+
```
|
|
181
|
+
templates/my-template/
|
|
182
|
+
├── scaffold.yaml # Required: defines boilerplates and features
|
|
183
|
+
└── src/ # Template files (use .liquid for variable replacement)
|
|
184
|
+
├── package.json.liquid
|
|
185
|
+
└── src/
|
|
186
|
+
└── index.ts.liquid
|
|
187
|
+
```
|
|
249
188
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
189
|
+
**scaffold.yaml example:**
|
|
190
|
+
|
|
191
|
+
```yaml
|
|
192
|
+
boilerplate:
|
|
193
|
+
name: my-template-app
|
|
194
|
+
description: My custom application template
|
|
195
|
+
targetFolder: apps
|
|
196
|
+
variables_schema:
|
|
197
|
+
type: object
|
|
198
|
+
properties:
|
|
199
|
+
projectName:
|
|
200
|
+
type: string
|
|
201
|
+
description: Project directory name
|
|
202
|
+
packageName:
|
|
203
|
+
type: string
|
|
204
|
+
description: NPM package name
|
|
205
|
+
required:
|
|
206
|
+
- projectName
|
|
207
|
+
- packageName
|
|
208
|
+
includes:
|
|
209
|
+
- package.json
|
|
210
|
+
- src/index.ts
|
|
211
|
+
|
|
212
|
+
features:
|
|
213
|
+
- name: scaffold-component
|
|
214
|
+
description: Add a React component
|
|
215
|
+
variables_schema:
|
|
216
|
+
type: object
|
|
217
|
+
properties:
|
|
218
|
+
componentName:
|
|
219
|
+
type: string
|
|
220
|
+
description: Component name (PascalCase)
|
|
221
|
+
required:
|
|
222
|
+
- componentName
|
|
223
|
+
includes:
|
|
224
|
+
- src/components/{{ componentName }}/{{ componentName }}.tsx
|
|
225
|
+
```
|
|
253
226
|
|
|
254
|
-
|
|
255
|
-
scaffold-mcp boilerplate info nextjs-15-boilerplate
|
|
227
|
+
**Template file example (package.json.liquid):**
|
|
256
228
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
229
|
+
```json
|
|
230
|
+
{
|
|
231
|
+
"name": "{{ packageName }}",
|
|
232
|
+
"version": "0.1.0",
|
|
233
|
+
"description": "{{ description | default: 'My application' }}"
|
|
234
|
+
}
|
|
260
235
|
```
|
|
261
236
|
|
|
262
|
-
|
|
237
|
+
---
|
|
263
238
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
239
|
+
## Hooks Integration (Experimental)
|
|
240
|
+
|
|
241
|
+
> **Note:** This feature is experimental and may change.
|
|
242
|
+
|
|
243
|
+
Hooks let scaffold-mcp proactively suggest templates when your AI agent creates files.
|
|
267
244
|
|
|
268
|
-
|
|
269
|
-
scaffold-mcp scaffold info scaffold-nextjs-page --project /path/to/your/project
|
|
245
|
+
**Claude Code setup** (`.claude/settings.json`):
|
|
270
246
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
247
|
+
```json
|
|
248
|
+
{
|
|
249
|
+
"hooks": {
|
|
250
|
+
"PreToolUse": [
|
|
251
|
+
{
|
|
252
|
+
"matcher": "Write",
|
|
253
|
+
"hooks": [
|
|
254
|
+
{
|
|
255
|
+
"type": "command",
|
|
256
|
+
"command": "npx @agiflowai/scaffold-mcp hook --type claude-code.preToolUse"
|
|
257
|
+
}
|
|
258
|
+
]
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
}
|
|
275
263
|
```
|
|
276
264
|
|
|
265
|
+
When Claude tries to write a new file, the hook shows available scaffolding methods that match, so Claude can use templates instead of writing from scratch.
|
|
266
|
+
|
|
267
|
+
See [Hooks Documentation](./docs/hooks.md) for details.
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
277
271
|
## Documentation
|
|
278
272
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
273
|
+
| Document | Description |
|
|
274
|
+
|----------|-------------|
|
|
275
|
+
| [MCP Tools Reference](./docs/mcp-tools.md) | Detailed tool documentation |
|
|
276
|
+
| [CLI Commands](./docs/cli-commands.md) | Complete CLI reference |
|
|
277
|
+
| [Template Conventions](./docs/template-conventions.md) | How to create templates |
|
|
278
|
+
| [Advanced Generators](./docs/advanced-generators.md) | Custom TypeScript generators |
|
|
279
|
+
| [Hooks Integration](./docs/hooks.md) | AI agent hooks setup |
|
|
280
|
+
|
|
281
|
+
---
|
|
284
282
|
|
|
285
283
|
## License
|
|
286
284
|
|
package/dist/cli.cjs
CHANGED
|
@@ -16,7 +16,7 @@ let __agiflowai_coding_agent_bridge = require("@agiflowai/coding-agent-bridge");
|
|
|
16
16
|
let __agiflowai_hooks_adapter = require("@agiflowai/hooks-adapter");
|
|
17
17
|
|
|
18
18
|
//#region package.json
|
|
19
|
-
var version = "1.0.
|
|
19
|
+
var version = "1.0.7";
|
|
20
20
|
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region src/commands/boilerplate.ts
|
package/dist/cli.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import { CLAUDE_CODE, GEMINI_CLI } from "@agiflowai/coding-agent-bridge";
|
|
|
14
14
|
import { ClaudeCodeAdapter, GeminiCliAdapter, parseHookType } from "@agiflowai/hooks-adapter";
|
|
15
15
|
|
|
16
16
|
//#region package.json
|
|
17
|
-
var version = "1.0.
|
|
17
|
+
var version = "1.0.7";
|
|
18
18
|
|
|
19
19
|
//#endregion
|
|
20
20
|
//#region src/commands/boilerplate.ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agiflowai/scaffold-mcp",
|
|
3
3
|
"description": "MCP server for scaffolding applications with boilerplate templates",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.8",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"author": "AgiflowIO",
|
|
7
7
|
"repository": {
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"pino": "^10.0.0",
|
|
49
49
|
"pino-pretty": "^13.1.1",
|
|
50
50
|
"zod": "3.25.76",
|
|
51
|
-
"@agiflowai/aicode-utils": "1.0.
|
|
52
|
-
"@agiflowai/
|
|
53
|
-
"@agiflowai/hooks-adapter": "0.0.
|
|
54
|
-
"@agiflowai/
|
|
51
|
+
"@agiflowai/aicode-utils": "1.0.7",
|
|
52
|
+
"@agiflowai/coding-agent-bridge": "1.0.7",
|
|
53
|
+
"@agiflowai/hooks-adapter": "0.0.3",
|
|
54
|
+
"@agiflowai/architect-mcp": "1.0.8"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/express": "^5.0.0",
|