fa-mcp-sdk 0.4.55 → 0.4.57
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
name: feature-generator
|
|
2
|
+
name: feature-prompt-generator
|
|
3
3
|
description: >-
|
|
4
4
|
Command-only META-SKILL (invoked explicitly, no auto-trigger). Produces an exhaustive,
|
|
5
5
|
self-sufficient prompt for an AI CLI (Claude Code) to implement a feature turnkey.
|
|
@@ -11,7 +11,7 @@ argument-hint: "[feature description | path to task file]"
|
|
|
11
11
|
allowed-tools: Read, Grep, Glob, Bash(git *), Bash(yarn *), Bash(npm *), Bash(node *), Bash(ls *), Bash(cat *)
|
|
12
12
|
---
|
|
13
13
|
|
|
14
|
-
# feature-generator — META-SKILL for generating prompts for an AI CLI
|
|
14
|
+
# feature-prompt-generator — META-SKILL for generating prompts for an AI CLI
|
|
15
15
|
|
|
16
16
|
## Essence
|
|
17
17
|
|
|
@@ -28,7 +28,7 @@ implementation. You do not touch any code in the target repository.
|
|
|
28
28
|
## How to invoke
|
|
29
29
|
|
|
30
30
|
**Command-only.** The skill is **never auto-invoked by the model** — `disable-model-invocation`
|
|
31
|
-
is set to `true`. Runs solely when the operator explicitly calls it (e.g. `/feature-generator`
|
|
31
|
+
is set to `true`. Runs solely when the operator explicitly calls it (e.g. `/feature-prompt-generator`
|
|
32
32
|
or the equivalent UI invocation). Ignore any implicit triggers from phrasing in user messages.
|
|
33
33
|
|
|
34
34
|
## When to use
|
package/cli-template/README.md
CHANGED
|
@@ -166,10 +166,10 @@ The project ships with custom skills in `.claude/skills/`:
|
|
|
166
166
|
|----------------------|-------------------------------------------------------------------------|
|
|
167
167
|
| `/gen-jwt` | Generate JWT tokens for MCP server authentication |
|
|
168
168
|
| `/upgrade-guide` | Generate migration guide for `fa-mcp-sdk` upgrades |
|
|
169
|
-
| `/feature-generator` | Turn a feature description into a self-sufficient prompt for an AI CLI |
|
|
169
|
+
| `/feature-prompt-generator` | Turn a feature description into a self-sufficient prompt for an AI CLI |
|
|
170
170
|
| `/readme-generator` | Generate structured README.md + satellite `readme-docs/*.md` |
|
|
171
171
|
|
|
172
|
-
Details, launch modes, and examples: [
|
|
172
|
+
Details, launch modes, and examples: [SKILLS](readme-docs/SKILLS.md)
|
|
173
173
|
|
|
174
174
|
## Security
|
|
175
175
|
|
|
@@ -66,7 +66,7 @@ via `git show <ref>:package.json`. To reference SDK versions/commits directly, m
|
|
|
66
66
|
|
|
67
67
|
---
|
|
68
68
|
|
|
69
|
-
### `/feature-generator` — Feature Prompt Generator
|
|
69
|
+
### `/feature-prompt-generator` — Feature Prompt Generator
|
|
70
70
|
|
|
71
71
|
A **META-skill**: turns a feature description into a self-sufficient prompt for an AI CLI (Claude Code or another
|
|
72
72
|
agent) to implement the feature turnkey. The skill itself does NOT write feature code — it produces the prompt.
|
|
@@ -83,7 +83,7 @@ What it does:
|
|
|
83
83
|
|
|
84
84
|
Characteristics:
|
|
85
85
|
|
|
86
|
-
- **Launch**: **command-only** via `/feature-generator`. Has `disable-model-invocation: true` — does NOT activate
|
|
86
|
+
- **Launch**: **command-only** via `/feature-prompt-generator`. Has `disable-model-invocation: true` — does NOT activate
|
|
87
87
|
on trigger phrases or implicit mentions
|
|
88
88
|
- **Input**: free-form feature description OR path to a file with the description (e.g. `task.md`, ticket dump)
|
|
89
89
|
- **Output**: file `prop-<kebab-name>.md` in repository root. If the file already exists, a numeric suffix is
|
|
@@ -92,10 +92,10 @@ Characteristics:
|
|
|
92
92
|
**Examples:**
|
|
93
93
|
|
|
94
94
|
```
|
|
95
|
-
/feature-generator Add a tool for batch-processing customer records across a project
|
|
96
|
-
/feature-generator task.md
|
|
97
|
-
/feature-generator REQ-1234: implement webhook callback receiver for external events
|
|
98
|
-
/feature-generator Add OAuth2 token refresh logic to the HTTP client
|
|
95
|
+
/feature-prompt-generator Add a tool for batch-processing customer records across a project
|
|
96
|
+
/feature-prompt-generator task.md
|
|
97
|
+
/feature-prompt-generator REQ-1234: implement webhook callback receiver for external events
|
|
98
|
+
/feature-prompt-generator Add OAuth2 token refresh logic to the HTTP client
|
|
99
99
|
```
|
|
100
100
|
|
|
101
101
|
---
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fa-mcp-sdk",
|
|
3
3
|
"productName": "FA MCP SDK",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.57",
|
|
5
5
|
"description": "Core infrastructure and templates for building Model Context Protocol (MCP) servers with TypeScript",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/core/index.js",
|