@cremini/skillpack 1.1.8-beta.1 → 1.1.9
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 -1
- package/dist/cli.js +177 -256
- package/package.json +2 -2
- package/templates/builtin-skills/skill-creator/LICENSE.txt +202 -0
- package/templates/builtin-skills/skill-creator/SKILL.md +171 -0
- package/templates/builtin-skills/skill-creator/agents/analyzer.md +274 -0
- package/templates/builtin-skills/skill-creator/agents/comparator.md +202 -0
- package/templates/builtin-skills/skill-creator/agents/grader.md +223 -0
- package/templates/builtin-skills/skill-creator/assets/eval_review.html +146 -0
- package/templates/builtin-skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/templates/builtin-skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/templates/builtin-skills/skill-creator/references/schemas.md +430 -0
- package/templates/builtin-skills/skill-creator/scripts/__init__.py +0 -0
- package/templates/builtin-skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/templates/builtin-skills/skill-creator/scripts/generate_report.py +326 -0
- package/templates/builtin-skills/skill-creator/scripts/improve_description.py +247 -0
- package/templates/builtin-skills/skill-creator/scripts/package_skill.py +136 -0
- package/templates/builtin-skills/skill-creator/scripts/quick_validate.py +103 -0
- package/templates/builtin-skills/skill-creator/scripts/run_eval.py +310 -0
- package/templates/builtin-skills/skill-creator/scripts/run_loop.py +328 -0
- package/templates/builtin-skills/skill-creator/scripts/utils.py +47 -0
- package/web/js/api-key-dialog.js +5 -3
- package/web/js/chat-apps-dialog.js +10 -4
- package/web/js/chat.js +8 -8
- package/web/js/settings.js +8 -3
- package/dist/runtime/registry.js +0 -244
package/README.md
CHANGED
|
@@ -20,7 +20,9 @@ Skillpack is built for teams that want AI Agents to be deployable, trusted, and
|
|
|
20
20
|
|
|
21
21
|
### 1. Run a skillpack
|
|
22
22
|
|
|
23
|
-
1. Download the example
|
|
23
|
+
1. Download the example
|
|
24
|
+
- [Garry Tan SkillPack](https://github.com/CreminiAI/skillpack-examples/releases/download/v.0.0.3/garry-tan.zip)
|
|
25
|
+
- [Company Deep Research SkillPack](https://github.com/FinpeakInc/downloads/releases/download/v.0.0.1/Company-Deep-Research.zip)
|
|
24
26
|
2. Unzip it and Run ./start.sh on Mac OS, and double click start.bat on Windows (see below), the server starts and opens http://127.0.0.1:26313 in your browser
|
|
25
27
|
|
|
26
28
|
```bash
|
|
@@ -108,6 +110,7 @@ The start scripts use `npx @cremini/skillpack run .` so Node.js is the only prer
|
|
|
108
110
|
**Telegram configuration**: requires `Bot Token`
|
|
109
111
|
|
|
110
112
|
### Slack App Setup and how to get `App Token` and `Bot Token`
|
|
113
|
+
https://skillpack.gitbook.io/skillpack-docs/getting-started/slack-integration
|
|
111
114
|
|
|
112
115
|
1. Create a new Slack app at https://api.slack.com/apps
|
|
113
116
|
2. Enable Socket Mode (Settings → Socket Mode → Enable)
|
|
@@ -144,6 +147,7 @@ The start scripts use `npx @cremini/skillpack run .` so Node.js is the only prer
|
|
|
144
147
|
9. On the SkillPack buit-in UI http://127.0.0.1:26313, Tap "Connect to Chat App" button and Enter the **`Bot Token`** and **`App Token`**, Save
|
|
145
148
|
|
|
146
149
|
### Telegram Setup and how to get `Bot Token`
|
|
150
|
+
https://skillpack.gitbook.io/skillpack-docs/getting-started/telegram-integration
|
|
147
151
|
|
|
148
152
|
1. **Open Telegram** and search for the official account **`@BotFather`** (it will have a blue verified checkmark).
|
|
149
153
|
2. **Start a chat** by tapping "Start" or sending the `/start` command.
|