@cremini/skillpack 1.2.7 → 1.2.8
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 +3 -0
- package/dist/cli.js +1729 -712
- package/package.json +6 -2
- package/web/js/api-key-dialog.js +5 -0
- package/web/js/api.js +30 -0
- package/web/js/chat.js +290 -14
- package/web/js/main.js +7 -4
- package/web/styles.css +65 -0
package/README.md
CHANGED
|
@@ -97,6 +97,7 @@ The archive produced by `zip` is intentionally lightweight:
|
|
|
97
97
|
```text
|
|
98
98
|
<pack-name>/
|
|
99
99
|
├── skillpack.json # Pack configuration
|
|
100
|
+
├── job.json # Optional scheduled jobs shipped with the pack
|
|
100
101
|
├── AGENTS.md # Optional pack policy
|
|
101
102
|
├── SOUL.md # Optional pack persona
|
|
102
103
|
├── skills/ # Installed skills
|
|
@@ -106,6 +107,8 @@ The archive produced by `zip` is intentionally lightweight:
|
|
|
106
107
|
|
|
107
108
|
The start scripts use `npx @cremini/skillpack run .` so Node.js is the only prerequisite — no pre-bundled server directory is included.
|
|
108
109
|
|
|
110
|
+
If present, `job.json` defines scheduled jobs that travel with the pack and are loaded by the scheduler at runtime.
|
|
111
|
+
|
|
109
112
|
If present, `AGENTS.md` and `SOUL.md` are read by SkillPack itself when a new chat session starts. SkillPack injects them into the runtime system prompt as pack-level policy and persona, without depending on the host machine's `AGENTS.md`, `.pi/SYSTEM.md`, or `APPEND_SYSTEM.md`.
|
|
110
113
|
|
|
111
114
|
## Slack/Telegram Integrations
|