scaffold-agent-skill 0.1.0 → 0.1.2
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 +5 -5
- package/package.json +6 -2
- package/src/cli.js +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# scaffold-agent-skill
|
|
2
2
|
|
|
3
3
|
Interactively scaffold agent skills and plugins from a single specification. Target multiple developer and agent platforms simultaneously with a clean, validated scaffolding directory.
|
|
4
4
|
|
|
@@ -27,7 +27,7 @@ Supported platforms include:
|
|
|
27
27
|
You can run the tool interactively without installing it:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
npx
|
|
30
|
+
npx scaffold-agent-skill
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
You will be prompted to:
|
|
@@ -44,8 +44,8 @@ You will be prompted to:
|
|
|
44
44
|
Clone the repository and install dependencies:
|
|
45
45
|
|
|
46
46
|
```bash
|
|
47
|
-
git clone https://github.com/
|
|
48
|
-
cd
|
|
47
|
+
git clone https://github.com/CODExGAMERZ/scaffold-agent-skill.git
|
|
48
|
+
cd scaffold-agent-skill
|
|
49
49
|
npm install
|
|
50
50
|
```
|
|
51
51
|
|
|
@@ -59,7 +59,7 @@ Or link it globally to run it from anywhere on your machine:
|
|
|
59
59
|
|
|
60
60
|
```bash
|
|
61
61
|
npm link
|
|
62
|
-
|
|
62
|
+
scaffold-agent-skill
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
## Generated Outputs and Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scaffold-agent-skill",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Interactively scaffold an AI agent skill or plugin (Claude Code plugin, OpenAI Custom GPT Action, OpenClaw, or Google ADK/Gemini) from a single spec.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,9 +35,13 @@
|
|
|
35
35
|
"cli",
|
|
36
36
|
"generator"
|
|
37
37
|
],
|
|
38
|
+
"homepage": "https://github.com/CODExGAMERZ/scaffold-agent-skill#readme",
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/CODExGAMERZ/scaffold-agent-skill/issues"
|
|
41
|
+
},
|
|
38
42
|
"repository": {
|
|
39
43
|
"type": "git",
|
|
40
|
-
"url": "git+https://github.com/
|
|
44
|
+
"url": "git+https://github.com/CODExGAMERZ/scaffold-agent-skill.git"
|
|
41
45
|
},
|
|
42
46
|
"dependencies": {
|
|
43
47
|
"js-yaml": "^4.1.0",
|
package/src/cli.js
CHANGED
|
@@ -434,7 +434,7 @@ async function writeTopLevelReadme(spec, outDir) {
|
|
|
434
434
|
}
|
|
435
435
|
}
|
|
436
436
|
|
|
437
|
-
lines.push('', '## Generated by', '', '`
|
|
437
|
+
lines.push('', '## Generated by', '', '`scaffold-agent-skill` — edit everything above freely, this is just a starting point.', '');
|
|
438
438
|
|
|
439
439
|
await fs.writeFile(path.join(outDir, 'README.md'), lines.join('\n'), 'utf8');
|
|
440
440
|
}
|