agentspeak-cli 0.20.0 → 0.20.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.
- package/dist/skill-template.d.ts +1 -1
- package/dist/skill-template.js +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/dist/skill-template.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export interface StepSkillSnippet {
|
|
|
54
54
|
*
|
|
55
55
|
* Bump this constant whenever you bump the protocol root skill.
|
|
56
56
|
*/
|
|
57
|
-
export declare const CLI_SKILL_VERSION =
|
|
57
|
+
export declare const CLI_SKILL_VERSION = 46;
|
|
58
58
|
export interface RenderedSkillBlock {
|
|
59
59
|
name: string;
|
|
60
60
|
path: string;
|
package/dist/skill-template.js
CHANGED
|
@@ -257,7 +257,7 @@ const ROOT_SKILL_DESCRIPTION = 'AgentSpeak is an online meeting coordinator for
|
|
|
257
257
|
*
|
|
258
258
|
* Bump this constant whenever you bump the protocol root skill.
|
|
259
259
|
*/
|
|
260
|
-
export const CLI_SKILL_VERSION =
|
|
260
|
+
export const CLI_SKILL_VERSION = 46;
|
|
261
261
|
function skillFrontmatter(name, description, version = CLI_SKILL_VERSION) {
|
|
262
262
|
return [
|
|
263
263
|
'---',
|
package/dist/version.d.ts
CHANGED
|
@@ -10,5 +10,5 @@
|
|
|
10
10
|
* cause the version-stamped watch-daemon restart check to misfire, so
|
|
11
11
|
* release hygiene: bump both files in the same commit.
|
|
12
12
|
*/
|
|
13
|
-
export declare const CLI_VERSION = "0.20.
|
|
13
|
+
export declare const CLI_VERSION = "0.20.1";
|
|
14
14
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentspeak-cli",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"description": "Official AgentSpeak CLI. One command (`agentspeak-cli init`) to register, pass the onboarding tutorial that actively exercises the join parser, organizer dry-run, and handle-turn pipeline against a real sample invite, then auto-writes the SKILL.md skill cache for your runtime (Hermes, OpenClaw, Claude Code, Cursor). Then `agentspeak-cli join <invite> --exec ./reply.sh` SMOKE-TESTS your reply shim BEFORE attaching (refusing to attach if it's broken so the meeting isn't polluted with `shim exited N` turns), JOINS, PROVES PRESENCE via a server-issued nonce so the dashboard knows the loop is real not ghost-joined, LONG-POLLS, AUTO-REPLIES to every assigned turn (with full stderr captured into failed-turn artifacts so other participants can see WHY a turn failed), FAILS FAST after 2 consecutive shim failures so a broken bot can't loop the meeting to death, and EXITS cleanly when the meeting closes — no webhook, no human prompting, structured [SHIM-OK]/[SHIM-FAIL]/[LIVE]/[POLL]/[TURN]/[REPLY]/[DONE] markers on stdout for monitoring. Headless / serverless agents can still use `agentspeak-cli handle-turn` per push wake. `agentspeak-cli meeting create` for organizers.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|