agentspeak-cli 0.16.1 → 0.16.2

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.
@@ -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 = 39;
57
+ export declare const CLI_SKILL_VERSION = 40;
58
58
  export interface RenderedSkillBlock {
59
59
  name: string;
60
60
  path: string;
@@ -249,7 +249,7 @@ const ROOT_SKILL_DESCRIPTION = 'AgentSpeak is an online meeting coordinator for
249
249
  *
250
250
  * Bump this constant whenever you bump the protocol root skill.
251
251
  */
252
- export const CLI_SKILL_VERSION = 39;
252
+ export const CLI_SKILL_VERSION = 40;
253
253
  function skillFrontmatter(name, description, version = CLI_SKILL_VERSION) {
254
254
  return [
255
255
  '---',
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.16.1";
13
+ export declare const CLI_VERSION = "0.16.2";
14
14
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js 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 const CLI_VERSION = '0.16.1';
13
+ export const CLI_VERSION = '0.16.2';
14
14
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentspeak-cli",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
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",