@cleocode/caamp 2026.4.31 → 2026.4.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleocode/caamp",
3
- "version": "2026.4.31",
3
+ "version": "2026.4.36",
4
4
  "description": "Central AI Agent Managed Packages - unified provider registry and package manager for AI coding agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -51,8 +51,8 @@
51
51
  "jsonc-parser": "^3.3.1",
52
52
  "picocolors": "^1.1.1",
53
53
  "simple-git": "3.33.0",
54
- "@cleocode/cant": "2026.4.31",
55
- "@cleocode/lafs": "2026.4.31"
54
+ "@cleocode/cant": "2026.4.36",
55
+ "@cleocode/lafs": "2026.4.36"
56
56
  },
57
57
  "devDependencies": {
58
58
  "@biomejs/biome": "2.4.8",
@@ -402,6 +402,47 @@
402
402
  },
403
403
  "providerOnlyEvents": []
404
404
  },
405
+ "pi": {
406
+ "hookSystem": "extension",
407
+ "hookConfigPath": "$PI_CODING_AGENT_DIR/extensions/",
408
+ "hookFormat": "typescript",
409
+ "handlerTypes": ["extension"],
410
+ "experimental": false,
411
+ "notes": "Pi is CAAMP's first-class primary harness (ADR-035). Events use snake_case. Extensions live at ~/.pi/agent/extensions/ (global) or <projectDir>/.pi/extensions/ (project).",
412
+ "nativeEventCatalog": "pi",
413
+ "mappings": {
414
+ "SessionStart": { "nativeName": "session_start", "supported": true },
415
+ "SessionEnd": { "nativeName": "session_shutdown", "supported": true },
416
+ "PromptSubmit": { "nativeName": "input", "supported": true },
417
+ "ResponseComplete": { "nativeName": null, "supported": false },
418
+ "PreToolUse": { "nativeName": "tool_call", "supported": true },
419
+ "PostToolUse": { "nativeName": "tool_result", "supported": true },
420
+ "PostToolUseFailure": { "nativeName": null, "supported": false },
421
+ "PermissionRequest": { "nativeName": null, "supported": false },
422
+ "SubagentStart": { "nativeName": "before_agent_start", "supported": true },
423
+ "SubagentStop": { "nativeName": "agent_end", "supported": true },
424
+ "PreModel": { "nativeName": "before_provider_request", "supported": true },
425
+ "PostModel": { "nativeName": null, "supported": false },
426
+ "PreCompact": { "nativeName": "context", "supported": true, "notes": "Pi's context assembly event is the closest proxy for pre-compaction" },
427
+ "PostCompact": { "nativeName": null, "supported": false },
428
+ "Notification": { "nativeName": "turn_end", "supported": true, "notes": "Pi emits turn_end when the assistant turn completes, which is the best proxy for a notification event" },
429
+ "ConfigChange": { "nativeName": null, "supported": false }
430
+ },
431
+ "providerOnlyEvents": [
432
+ "session_switch",
433
+ "session_fork",
434
+ "agent_start",
435
+ "turn_start",
436
+ "message_start",
437
+ "message_update",
438
+ "message_end",
439
+ "tool_execution_start",
440
+ "tool_execution_end",
441
+ "user_bash",
442
+ "model_select",
443
+ "resources_discover"
444
+ ]
445
+ },
405
446
  "antigravity": {
406
447
  "hookSystem": "none",
407
448
  "hookConfigPath": null,