needware-cli 1.6.10 → 1.6.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "needware-cli",
3
- "version": "1.6.10",
3
+ "version": "1.6.11",
4
4
  "description": "一个功能强大的 Node.js 命令行工具",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -0,0 +1,56 @@
1
+ ---
2
+ name: add-skill-integration
3
+ description: Create new skills to integrate third-party services or features into user projects. Use this skill when adding new service integrations.
4
+ ---
5
+
6
+ # Add Skill Integration
7
+
8
+ ## Overview
9
+
10
+ This skill guides you on how to install skills into user projects. Skills are modular integration guides that help integrate third-party services and features.
11
+
12
+ ## When to Use This Skill
13
+
14
+ Use this skill when users:
15
+ - Need to add new service integrations (databases, APIs, etc.)
16
+ - Want to create custom skill documentation
17
+
18
+ ## Quick Start
19
+
20
+ ### Install Skills
21
+
22
+ Use `add-skill` to install skills from a Git repository to your agent:
23
+
24
+ ```bash
25
+
26
+ # Install to Claude Code
27
+ npx add-skill https://github.com/your-org/your-skills -a claude-code -y
28
+
29
+ # GitHub shorthand
30
+ npx add-skill vercel-labs/agent-skills -a claude-code -y
31
+
32
+ # Full GitHub URL
33
+ npx add-skill https://github.com/vercel-labs/agent-skills -a claude-code -y
34
+
35
+ # Direct path to a skill in a repo
36
+ npx add-skill https://github.com/vercel-labs/agent-skills/tree/main/skills/ frontend-design -a claude-code -y
37
+
38
+ # GitLab URL
39
+ npx add-skill https://gitlab.com/org/repo -a claude-code -y
40
+
41
+ # Any git URL
42
+ npx add-skill git@github.com:vercel-labs/agent-skills.git -a claude-code -y
43
+ ### Supported Agents
44
+
45
+ - More agents see [add-skill documentation](https://github.com/vercel-labs/add-skill)
46
+
47
+ ```
48
+
49
+ ## Example References
50
+
51
+ Reference existing skill implementations:
52
+
53
+ - [Vercel Agent Skills](https://github.com/vercel-labs/agent-skills)
54
+ - [Remotion Skills](https://github.com/remotion-dev/skills)
55
+
56
+