itismyskillmarket 1.3.12 → 1.3.13
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 +44 -0
- package/dist/index.js +906 -524
- package/gui/app.js +452 -0
- package/gui/index.html +14 -1
- package/gui/style.css +261 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,10 @@ skm install brainstorming@1.0.0
|
|
|
44
44
|
# Force overwrite if already installed
|
|
45
45
|
skm install brainstorming --force
|
|
46
46
|
|
|
47
|
+
# Install from GitHub
|
|
48
|
+
skm install owner/repo
|
|
49
|
+
skm install https://github.com/owner/repo
|
|
50
|
+
|
|
47
51
|
# Update a specific skill
|
|
48
52
|
skm update brainstorming
|
|
49
53
|
|
|
@@ -64,6 +68,46 @@ skm uninstall brainstorming
|
|
|
64
68
|
|
|
65
69
|
# Uninstall from specific platform
|
|
66
70
|
skm uninstall brainstorming --platform opencode
|
|
71
|
+
|
|
72
|
+
# Uninstall all skills
|
|
73
|
+
skm uninstall --all
|
|
74
|
+
|
|
75
|
+
# Publish a skill to npm
|
|
76
|
+
skm publish <skill-name>
|
|
77
|
+
skm publish <skill-name> --version 1.0.1
|
|
78
|
+
|
|
79
|
+
# Verify a skill
|
|
80
|
+
skm verify <skill-name>
|
|
81
|
+
|
|
82
|
+
# Start GUI (web interface)
|
|
83
|
+
skm gui
|
|
84
|
+
skm gui 18790 # Custom port
|
|
85
|
+
|
|
86
|
+
# Admin: manage published skills
|
|
87
|
+
skm admin ls # List all published skills
|
|
88
|
+
skm admin info <skill> # View skill details
|
|
89
|
+
skm admin search <keyword> # Search published skills
|
|
90
|
+
skm admin stats # Publishing statistics
|
|
91
|
+
skm admin verify <skill> # Verify published skill
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Environment Variables
|
|
95
|
+
|
|
96
|
+
SkillMarket reads configuration from environment variables:
|
|
97
|
+
|
|
98
|
+
| Variable | Default | Description |
|
|
99
|
+
|----------|---------|-------------|
|
|
100
|
+
| `SKM_NPM_SCOPE` | `@itismyskillmarket` | Primary npm scope for publishing/lookup |
|
|
101
|
+
| `SKM_NPM_SCOPE_FALLBACK` | `@wanxuchen` | Fallback scope (backward compatibility) |
|
|
102
|
+
| `SKM_NPM_SCOPES` | (5 scopes) | Comma-separated list of scopes to search |
|
|
103
|
+
| `SKM_NPM_REGISTRY` | `https://registry.npmjs.org` | npm registry URL |
|
|
104
|
+
| `SKM_URL` | `https://www.npmjs.com/package/@itismyskillmarket` | Personal link prefix for `skm publish` output |
|
|
105
|
+
|
|
106
|
+
Example:
|
|
107
|
+
```bash
|
|
108
|
+
export SKM_NPM_SCOPE=@mycompany
|
|
109
|
+
export SKM_URL=https://my-registry.example.com
|
|
110
|
+
skm publish my-skill # → View at: https://my-registry.example.com/my-skill
|
|
67
111
|
```
|
|
68
112
|
|
|
69
113
|
## Cross-Platform Installation
|