UNPKG

@agentled/cli

Version:

CLI for Agentled — manage workflows, apps, and knowledge from the command line. Zero context-window cost for AI agents.

52 lines (51 loc) 1.16 kB
{ "hooks": { "SessionStart": [ { "hooks": [ { "type": "command", "command": "node ${PLUGIN_ROOT}/hooks/agentled-session-start.mjs", "statusMessage": "Loading Agentled product memory", "timeout": 10 } ] } ], "UserPromptSubmit": [ { "hooks": [ { "type": "command", "command": "node ${PLUGIN_ROOT}/hooks/agentled-turn-guidance.mjs --source prompt", "timeout": 10 } ] } ], "PostToolUse": [ { "matcher": "Bash|apply_patch|Edit|Write", "hooks": [ { "type": "command", "command": "node ${PLUGIN_ROOT}/hooks/agentled-turn-guidance.mjs --source tool", "statusMessage": "Checking for Agentled feedback signals", "timeout": 10 } ] } ], "Stop": [ { "hooks": [ { "type": "command", "command": "node ${PLUGIN_ROOT}/hooks/agentled-stop-review.mjs", "timeout": 10 } ] } ] } }