@jefflee2002/agentskills 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. package/README.md +20 -20
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # agentskills
1
+ # @jefflee2002/agentskills
2
2
 
3
3
  > CLI tool to install AI agent skills from the [AgentSkills marketplace](https://agentskills.cv)
4
4
 
@@ -15,16 +15,16 @@ Install skills directly from agentskills.cv to all your AI agents with a single
15
15
 
16
16
  ```bash
17
17
  # Install a skill
18
- npx agentskills install notebooklm
18
+ npx @jefflee2002/agentskills install notebooklm
19
19
 
20
20
  # Search for skills
21
- npx agentskills search "git commit"
21
+ npx @jefflee2002/agentskills search "git commit"
22
22
 
23
23
  # List installed skills
24
- npx agentskills list
24
+ npx @jefflee2002/agentskills list
25
25
 
26
26
  # Show detected agents
27
- npx agentskills agents
27
+ npx @jefflee2002/agentskills agents
28
28
  ```
29
29
 
30
30
  ## Installation
@@ -32,13 +32,13 @@ npx agentskills agents
32
32
  No installation required! Use `npx` to run the CLI directly:
33
33
 
34
34
  ```bash
35
- npx agentskills <command>
35
+ npx @jefflee2002/agentskills <command>
36
36
  ```
37
37
 
38
38
  Or install globally:
39
39
 
40
40
  ```bash
41
- npm install -g agentskills
41
+ npm install -g @jefflee2002/agentskills
42
42
  ```
43
43
 
44
44
  ## Usage
@@ -47,16 +47,16 @@ npm install -g agentskills
47
47
 
48
48
  ```bash
49
49
  # Install to project (local)
50
- npx agentskills install <skill-name>
50
+ npx @jefflee2002/agentskills install <skill-name>
51
51
 
52
52
  # Install globally
53
- npx agentskills install <skill-name> --global
53
+ npx @jefflee2002/agentskills install <skill-name> --global
54
54
  ```
55
55
 
56
56
  ### Search skills
57
57
 
58
58
  ```bash
59
- npx agentskills search "your query"
59
+ npx @jefflee2002/agentskills search "your query"
60
60
  ```
61
61
 
62
62
  ### Convert skills
@@ -65,29 +65,29 @@ Convert existing skill files or GitHub repos to OpenClaw format:
65
65
 
66
66
  ```bash
67
67
  # Convert local file
68
- npx agentskills convert ./my-skill.md
68
+ npx @jefflee2002/agentskills convert ./my-skill.md
69
69
 
70
70
  # Convert GitHub repo
71
- npx agentskills convert https://github.com/user/repo
71
+ npx @jefflee2002/agentskills convert https://github.com/user/repo
72
72
 
73
73
  # Convert and install
74
- npx agentskills convert ./my-skill.md --install
74
+ npx @jefflee2002/agentskills convert ./my-skill.md --install
75
75
  ```
76
76
 
77
77
  ### List installed skills
78
78
 
79
79
  ```bash
80
80
  # List project skills
81
- npx agentskills list
81
+ npx @jefflee2002/agentskills list
82
82
 
83
83
  # List global skills
84
- npx agentskills list --global
84
+ npx @jefflee2002/agentskills list --global
85
85
  ```
86
86
 
87
87
  ### Show detected agents
88
88
 
89
89
  ```bash
90
- npx agentskills agents
90
+ npx @jefflee2002/agentskills agents
91
91
  ```
92
92
 
93
93
  ## Supported Agents
@@ -121,16 +121,16 @@ npx agentskills agents
121
121
 
122
122
  ```bash
123
123
  # Install a skill globally
124
- npx agentskills install commit-analyzer --global
124
+ npx @jefflee2002/agentskills install commit-analyzer --global
125
125
 
126
126
  # Search for git-related skills
127
- npx agentskills search "git"
127
+ npx @jefflee2002/agentskills search "git"
128
128
 
129
129
  # Convert a GitHub skill to OpenClaw and install
130
- npx agentskills convert https://github.com/user/skill-repo --install
130
+ npx @jefflee2002/agentskills convert https://github.com/user/skill-repo --install
131
131
 
132
132
  # List all globally installed skills
133
- npx agentskills list --global
133
+ npx @jefflee2002/agentskills list --global
134
134
  ```
135
135
 
136
136
  ## Environment Variables
package/dist/cli.js CHANGED
@@ -12,7 +12,7 @@ var AGENTS = [
12
12
  { name: "Claude Code", projectPath: ".claude/skills", globalPath: join(homedir(), ".claude", "skills") },
13
13
  { name: "Cursor", projectPath: ".cursor/skills", globalPath: join(homedir(), ".cursor", "skills") },
14
14
  { name: "Codex CLI", projectPath: ".codex/skills", globalPath: join(homedir(), ".codex", "skills") },
15
- { name: "OpenClaw", projectPath: "skills", globalPath: join(homedir(), ".openclaw", "skills") },
15
+ { name: "OpenClaw", projectPath: "skills", globalPath: join(homedir(), ".openclaw", "workspace", "skills") },
16
16
  { name: "OpenCode", projectPath: ".opencode/skills", globalPath: join(homedir(), ".opencode", "skills") }
17
17
  ];
18
18
  function detectAgents(cwd) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jefflee2002/agentskills",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI tool to install AI agent skills from the AgentSkills marketplace",
5
5
  "type": "module",
6
6
  "bin": {