@agentprojectcontext/apx 1.32.0 → 1.32.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.
Files changed (219) hide show
  1. package/package.json +6 -1
  2. package/skills/apc-context/SKILL.md +5 -2
  3. package/skills/apx/SKILL.md +3 -3
  4. package/skills/apx-agency-agents/SKILL.md +5 -5
  5. package/skills/apx-agent/SKILL.md +7 -7
  6. package/skills/apx-mcp/SKILL.md +6 -4
  7. package/skills/apx-mcp-builder/SKILL.md +4 -7
  8. package/skills/apx-project/SKILL.md +4 -5
  9. package/skills/apx-routine/SKILL.md +14 -12
  10. package/skills/apx-runtime/SKILL.md +5 -3
  11. package/skills/apx-sessions/SKILL.md +5 -5
  12. package/skills/apx-skill-builder/SKILL.md +10 -6
  13. package/skills/apx-task/SKILL.md +8 -8
  14. package/skills/apx-telegram/SKILL.md +23 -7
  15. package/skills/apx-voice/SKILL.md +8 -6
  16. package/src/core/{agent-system.js → agent/build-agent-system.js} +10 -12
  17. package/src/core/agent/index.js +0 -2
  18. package/src/core/{agent-memory.js → agent/memory.js} +2 -2
  19. package/src/core/agent/model-router.js +21 -43
  20. package/src/core/agent/prompt-builder.js +17 -63
  21. package/src/core/agent/prompts/action-discipline.md +17 -0
  22. package/src/core/agent/prompts/channels/code.md +8 -12
  23. package/src/core/agent/prompts/channels/desktop.md +6 -4
  24. package/src/core/agent/prompts/channels/routine.md +10 -1
  25. package/src/core/agent/prompts/channels/telegram.md +5 -0
  26. package/src/core/agent/prompts/channels/web_code.md +20 -0
  27. package/src/core/agent/prompts/modes/voice.md +2 -2
  28. package/src/core/agent/prompts/super-agent-base.md +2 -2
  29. package/src/core/agent/run-agent.js +37 -35
  30. package/src/core/agent/runtime-bridge.js +42 -0
  31. package/src/core/agent/self-memory.js +19 -9
  32. package/src/core/agent/skills/catalog.js +65 -0
  33. package/src/core/agent/skills/index.js +6 -0
  34. package/src/{host/daemon/skills-loader.js → core/agent/skills/loader.js} +3 -3
  35. package/src/core/agent/skills/rag.js +91 -0
  36. package/src/core/agent/skills/trigger.js +71 -0
  37. package/src/{host/daemon → core/agent}/super-agent.js +5 -5
  38. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/add-project.js +3 -4
  39. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/call-agent.js +2 -2
  40. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/call-mcp.js +1 -2
  41. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/call-runtime.js +10 -11
  42. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/create-task.js +1 -1
  43. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/discover-tools.js +1 -1
  44. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/edit-file.js +1 -2
  45. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/import-agent.js +4 -5
  46. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-agents.js +1 -1
  47. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-skills.js +7 -2
  48. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-tasks.js +1 -1
  49. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-vault-agents.js +1 -1
  50. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/load-skill.js +1 -1
  51. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/read-agent-memory.js +1 -1
  52. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/read-self-memory.js +1 -1
  53. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/remember.js +1 -1
  54. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/run-shell.js +1 -2
  55. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/search-messages.js +1 -1
  56. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/search-sessions.js +1 -1
  57. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/send-telegram.js +0 -2
  58. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/set-identity.js +1 -3
  59. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/set-permission-mode.js +1 -3
  60. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/tail-messages.js +1 -1
  61. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/transcribe-audio.js +1 -1
  62. package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/write-file.js +1 -2
  63. package/src/core/agent/tools/helpers.js +74 -0
  64. package/src/{host/daemon/super-agent-tools → core/agent/tools}/registry-bridge.js +3 -3
  65. package/src/{host/daemon/super-agent-tools/index.js → core/agent/tools/registry.js} +31 -32
  66. package/src/core/apc/agents-vault.js +37 -0
  67. package/src/core/{scaffold.js → apc/scaffold.js} +4 -5
  68. package/src/core/{config.js → config/index.js} +21 -27
  69. package/src/core/config/paths.js +32 -0
  70. package/src/core/constants/actors.js +8 -0
  71. package/src/core/constants/channels.js +19 -0
  72. package/src/core/constants/index.js +5 -0
  73. package/src/core/constants/permissions.js +17 -0
  74. package/src/core/constants/roles.js +9 -0
  75. package/src/core/engines/_streaming.js +63 -0
  76. package/src/core/engines/anthropic.js +11 -22
  77. package/src/core/engines/ollama.js +7 -16
  78. package/src/core/identity/index.js +8 -0
  79. package/src/core/{identity.js → identity/self.js} +5 -5
  80. package/src/core/{telegram-identity.js → identity/telegram.js} +1 -1
  81. package/src/core/logging.js +1 -1
  82. package/src/core/mascot.js +1 -1
  83. package/src/core/memory/active-threads.js +10 -10
  84. package/src/core/memory/broker.js +9 -9
  85. package/src/core/memory/compactor.js +2 -2
  86. package/src/core/memory/index.js +2 -2
  87. package/src/core/memory/indexer.js +1 -1
  88. package/src/core/{code-sessions-store.js → stores/code-sessions.js} +3 -7
  89. package/src/core/{messages-store.js → stores/messages.js} +6 -4
  90. package/src/core/stores/routine-memory.js +71 -0
  91. package/src/core/{routines-store.js → stores/routines.js} +1 -3
  92. package/src/core/stores/runtime-sessions.js +99 -0
  93. package/src/core/{tasks-store.js → stores/tasks.js} +3 -8
  94. package/src/core/update-check.js +1 -1
  95. package/src/core/util/ids.js +14 -0
  96. package/src/core/util/index.js +2 -0
  97. package/src/core/util/text-similarity.js +52 -0
  98. package/src/core/util/time.js +9 -0
  99. package/src/core/voice/tts.js +1 -1
  100. package/src/host/daemon/api/admin-config.js +4 -3
  101. package/src/host/daemon/api/admin.js +1 -1
  102. package/src/host/daemon/api/agents.js +4 -25
  103. package/src/host/daemon/api/artifacts.js +1 -1
  104. package/src/host/daemon/api/code.js +48 -16
  105. package/src/host/daemon/api/confirm.js +1 -1
  106. package/src/host/daemon/api/connections.js +2 -2
  107. package/src/host/daemon/api/conversations.js +2 -2
  108. package/src/host/daemon/api/deck.js +1 -1
  109. package/src/host/daemon/api/desktop.js +1 -1
  110. package/src/host/daemon/api/embeddings.js +4 -4
  111. package/src/host/daemon/api/engines.js +2 -2
  112. package/src/host/daemon/api/exec.js +3 -3
  113. package/src/host/daemon/api/identity.js +1 -1
  114. package/src/host/daemon/api/mcps.js +1 -1
  115. package/src/host/daemon/api/messages.js +1 -1
  116. package/src/host/daemon/api/runtimes.js +9 -8
  117. package/src/host/daemon/api/sessions-search.js +1 -1
  118. package/src/host/daemon/api/sessions.js +2 -2
  119. package/src/host/daemon/api/shared.js +5 -4
  120. package/src/host/daemon/api/skills.js +30 -0
  121. package/src/host/daemon/api/super-agent.js +29 -9
  122. package/src/host/daemon/api/tasks.js +2 -2
  123. package/src/host/daemon/api/telegram.js +1 -1
  124. package/src/host/daemon/api/tools.js +6 -6
  125. package/src/host/daemon/api/tts.js +2 -2
  126. package/src/host/daemon/api/voice.js +14 -12
  127. package/src/host/daemon/api.js +2 -0
  128. package/src/host/daemon/compact.js +1 -1
  129. package/src/host/daemon/db.js +4 -4
  130. package/src/host/daemon/desktop-ws.js +1 -1
  131. package/src/host/daemon/index.js +4 -4
  132. package/src/host/daemon/plugins/{desktop.js → desktop/index.js} +11 -6
  133. package/src/host/daemon/plugins/index.js +2 -2
  134. package/src/host/daemon/plugins/{telegram.js → telegram/index.js} +66 -195
  135. package/src/host/daemon/plugins/telegram/media.js +162 -0
  136. package/src/host/daemon/projects-helpers.js +54 -0
  137. package/src/host/daemon/routines.js +28 -12
  138. package/src/host/daemon/smoke.js +2 -2
  139. package/src/host/daemon/token-store.js +1 -1
  140. package/src/host/daemon/transcription.js +2 -2
  141. package/src/host/daemon/wakeup.js +2 -2
  142. package/src/interfaces/cli/commands/agent.js +3 -3
  143. package/src/interfaces/cli/commands/command.js +1 -1
  144. package/src/interfaces/cli/commands/config.js +3 -2
  145. package/src/interfaces/cli/commands/desktop.js +1 -1
  146. package/src/interfaces/cli/commands/exec.js +2 -1
  147. package/src/interfaces/cli/commands/identity.js +2 -2
  148. package/src/interfaces/cli/commands/init.js +1 -1
  149. package/src/interfaces/cli/commands/mcp.js +1 -1
  150. package/src/interfaces/cli/commands/memory.js +2 -2
  151. package/src/interfaces/cli/commands/model.js +16 -6
  152. package/src/interfaces/cli/commands/project.js +1 -1
  153. package/src/interfaces/cli/commands/routine.js +58 -0
  154. package/src/interfaces/cli/commands/search.js +1 -1
  155. package/src/interfaces/cli/commands/session.js +4 -4
  156. package/src/interfaces/cli/commands/setup.js +4 -3
  157. package/src/interfaces/cli/commands/skills.js +25 -4
  158. package/src/interfaces/cli/commands/status.js +1 -1
  159. package/src/interfaces/cli/commands/sys.js +11 -4
  160. package/src/interfaces/cli/commands/update.js +1 -1
  161. package/src/interfaces/cli/index.js +4 -4
  162. package/src/interfaces/cli/postinstall.js +2 -2
  163. package/src/interfaces/mcp-server/index.js +1 -1
  164. package/src/interfaces/tui/component/prompt/index.tsx +3 -1
  165. package/src/interfaces/tui/context/sdk-apx.tsx +47 -7
  166. package/src/interfaces/tui/context/sync-apx.tsx +20 -2
  167. package/src/interfaces/tui/context/sync.tsx +2 -1
  168. package/src/interfaces/tui/routes/session/index.tsx +151 -136
  169. package/src/interfaces/tui/routes/session/sidebar-apx.tsx +37 -15
  170. package/src/interfaces/tui/run.ts +2 -0
  171. package/src/interfaces/web/dist/assets/index-34U_Mp1M.css +1 -0
  172. package/src/interfaces/web/dist/assets/index-BkybwwRn.js +570 -0
  173. package/src/interfaces/web/dist/assets/index-BkybwwRn.js.map +1 -0
  174. package/src/interfaces/web/dist/index.html +2 -2
  175. package/src/interfaces/web/package-lock.json +3 -3
  176. package/src/interfaces/web/src/App.tsx +51 -32
  177. package/src/interfaces/web/src/components/RobyBubble.tsx +12 -6
  178. package/src/interfaces/web/src/components/UiSelect.tsx +1 -1
  179. package/src/interfaces/web/src/components/chat/SkillPicker.tsx +77 -0
  180. package/src/interfaces/web/src/components/code/CodeProjectPicker.tsx +1 -1
  181. package/src/interfaces/web/src/components/code/CodeSidePanel.tsx +33 -18
  182. package/src/interfaces/web/src/components/common/TabLayout.tsx +9 -5
  183. package/src/interfaces/web/src/components/common/TabNav.tsx +3 -3
  184. package/src/interfaces/web/src/components/layout/ProjectSidebar.tsx +4 -2
  185. package/src/interfaces/web/src/hooks/useChat.ts +47 -2
  186. package/src/interfaces/web/src/hooks/useNavCollapseCtx.tsx +59 -0
  187. package/src/interfaces/web/src/hooks/usePersonaName.ts +11 -0
  188. package/src/interfaces/web/src/i18n/en.ts +7 -7
  189. package/src/interfaces/web/src/i18n/es.ts +7 -7
  190. package/src/interfaces/web/src/lib/api/skills.ts +25 -0
  191. package/src/interfaces/web/src/lib/api.ts +1 -0
  192. package/src/interfaces/web/src/screens/modules/CodeScreen.tsx +18 -18
  193. package/src/interfaces/web/src/screens/modules/DeckScreen.tsx +5 -18
  194. package/src/interfaces/web/src/screens/modules/DesktopScreen.tsx +1 -8
  195. package/src/interfaces/web/src/screens/modules/VoiceScreen.tsx +39 -40
  196. package/src/interfaces/web/src/screens/project/ChatTab.tsx +12 -9
  197. package/src/skills/apc-context/SKILL.md +159 -0
  198. package/src/core/agent/ghost-guard.js +0 -24
  199. package/src/core/agent/prompts/channels/terminal.md +0 -16
  200. package/src/host/daemon/apc-runtime-context.js +0 -124
  201. package/src/host/daemon/super-agent-tools/helpers.js +0 -124
  202. package/src/host/daemon/tool-call-parser.js +0 -2
  203. package/src/interfaces/web/dist/assets/index-63P_ji1a.js +0 -571
  204. package/src/interfaces/web/dist/assets/index-63P_ji1a.js.map +0 -1
  205. package/src/interfaces/web/dist/assets/index-DLWy6dYz.css +0 -1
  206. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/ask-questions.js +0 -0
  207. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-files.js +0 -0
  208. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-mcps.js +0 -0
  209. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/list-projects.js +0 -0
  210. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/read-file.js +0 -0
  211. /package/src/{host/daemon/super-agent-tools/tools → core/agent/tools/handlers}/search-files.js +0 -0
  212. /package/src/core/agent/{pseudo-tools.js → tools/pseudo-tools.js} +0 -0
  213. /package/src/core/agent/{tool-call-parser.js → tools/tool-call-parser.js} +0 -0
  214. /package/src/core/{parser.js → apc/parser.js} +0 -0
  215. /package/src/core/{apc-skill-sync.js → apc/skill-sync.js} +0 -0
  216. /package/src/core/{artifacts-store.js → stores/artifacts.js} +0 -0
  217. /package/src/{host/daemon → core/stores}/engine-sessions.js +0 -0
  218. /package/src/core/{session-store.js → stores/sessions.js} +0 -0
  219. /package/src/host/daemon/plugins/{telegram-ask.js → telegram/ask.js} +0 -0
@@ -1,124 +0,0 @@
1
- // Helpers that wrap external runtimes (Claude Code, Codex, OpenCode, Aider,
2
- // Cursor Agent, Gemini CLI, Qwen Code)
3
- // with APC awareness:
4
- //
5
- // 1. Create an APX runtime session BEFORE the runtime starts.
6
- // 2. Inject an "APC Runtime Context" block into the system prompt so the
7
- // runtime knows the session id, the cwd of the project, and the apx
8
- // commands it can use to update memory / append session notes.
9
- // 3. After the runtime returns, capture the external transcript path
10
- // (Claude Code gives one; most other runtimes don't yet) and write it
11
- // into the APX session frontmatter.
12
- // 4. Close the session with a synthesised result (truncated stdout).
13
- //
14
- // Used by both POST /projects/:pid/agents/:slug/runtime (CLI) and the
15
- // super-agent's call_runtime tool.
16
-
17
- import fs from "node:fs";
18
- import path from "node:path";
19
- import { generateSessionId } from "../../core/session-store.js";
20
-
21
- const nowIso = () => new Date().toISOString().replace(/\.\d{3}Z$/, "Z");
22
-
23
- const APC_RUNTIME_HINT = `
24
- # APC Runtime Context
25
-
26
- You are running inside an APC (Agent Project Context) project. APC gives you portable project context. APX gives you local runtime session state.
27
-
28
- - **Project**: {{name}} ({{path}})
29
- - **Agent**: {{agent}}
30
- - **APC session id**: {{session_id}}
31
- (stored in APX local runtime storage, outside .apc/)
32
-
33
- ## Commands you can use during this run
34
-
35
- - \`apx memory {{agent}} --append "<note>"\` save a long-term fact for this agent
36
- - \`apx session update {{session_id}} --status "..."\` update the session status
37
- - \`apx session update {{session_id}} --task-ref TASK-...\` link to an external task
38
-
39
- ## When you finish
40
-
41
- Close the session with a one-line result so a future operator (or apx session resume) can summarize:
42
-
43
- apx session close {{session_id}} --result "<one-line summary of what you did>"
44
-
45
- If you cannot run apx (sandboxed shell), just print the result on the last line of your output prefixed with "APC_RESULT:" and APX will capture it automatically.
46
- `.trim();
47
-
48
- export function buildApfHint({ projectName, projectPath, agentSlug, sessionId }) {
49
- return APC_RUNTIME_HINT
50
- .replace(/\{\{name\}\}/g, projectName)
51
- .replace(/\{\{path\}\}/g, projectPath)
52
- .replace(/\{\{agent\}\}/g, agentSlug)
53
- .replace(/\{\{session_id\}\}/g, sessionId);
54
- }
55
-
56
- // Create the APX runtime session file on disk. Returns { id, filename, path }.
57
- export function createRuntimeSession({ projectRoot, storageRoot = projectRoot, agentSlug, runtime, taskRef = "", title }) {
58
- const dir = path.join(storageRoot, "agents", agentSlug, "sessions");
59
- fs.mkdirSync(dir, { recursive: true });
60
- const id = generateSessionId(storageRoot, agentSlug);
61
- const file = path.join(dir, `${id}.md`);
62
- const started = nowIso();
63
- const sessionTitle = title || `Runtime: ${runtime}`;
64
- const body =
65
- `---\n` +
66
- `id: ${id}\n` +
67
- `agent: ${agentSlug}\n` +
68
- `title: ${sessionTitle}\n` +
69
- `task_ref: ${taskRef}\n` +
70
- `status: 🔄 In progress\n` +
71
- `started: ${started}\n` +
72
- `completed: \n` +
73
- `result: \n` +
74
- `runtime: ${runtime}\n` +
75
- `external_session_path: \n` +
76
- `---\n\n` +
77
- `# ${sessionTitle}\n\n`;
78
- fs.writeFileSync(file, body);
79
- return { id, filename: `${id}.md`, path: file };
80
- }
81
-
82
- // Update session frontmatter with the external transcript path captured from
83
- // the runtime adapter. Closes the session with a result string.
84
- export function closeRuntimeSession({ filePath, externalSessionPath, exitCode, result }) {
85
- let text = fs.readFileSync(filePath, "utf8");
86
- text = setField(text, "completed", nowIso());
87
- if (externalSessionPath) {
88
- text = setField(text, "external_session_path", externalSessionPath);
89
- }
90
- if (typeof exitCode === "number") {
91
- text = setField(text, "result", `${exitCode === 0 ? "✅" : "⚠️"} exit ${exitCode}: ${(result || "").slice(0, 200)}`);
92
- } else if (result) {
93
- text = setField(text, "result", result.slice(0, 300));
94
- }
95
- text = setField(text, "status", exitCode === 0 ? "✅ Completed" : "⚠️ Closed with error");
96
- fs.writeFileSync(filePath, text);
97
- }
98
-
99
- function setField(text, field, value) {
100
- if (!text.startsWith("---\n")) return text;
101
- const end = text.indexOf("\n---", 4);
102
- if (end === -1) return text;
103
- const fmText = text.slice(4, end);
104
- const lines = fmText.split("\n");
105
- let found = false;
106
- const out = lines.map((line) => {
107
- if (line.startsWith(`${field}:`)) {
108
- found = true;
109
- return `${field}: ${value}`;
110
- }
111
- return line;
112
- });
113
- if (!found) out.push(`${field}: ${value}`);
114
- return `---\n${out.join("\n")}\n---${text.slice(end + 4)}`;
115
- }
116
-
117
- // Look at the runtime's stdout for a self-reported "APC_RESULT: ..." line
118
- // (the convention printed in the hint above). Returns the captured string or
119
- // null. This is the fallback for runtimes that can't shell out.
120
- export function extractApfResult(stdout) {
121
- if (!stdout || typeof stdout !== "string") return null;
122
- const m = stdout.match(/^APC_RESULT:\s*(.+?)\s*$/m);
123
- return m ? m[1].trim() : null;
124
- }
@@ -1,124 +0,0 @@
1
- import path from "node:path";
2
- import { agentSkills, buildAgentSystem as buildCoreAgentSystem } from "../../../core/agent-system.js";
3
- import { buildConfirmDescription } from "../../../core/confirmation/index.js";
4
-
5
- export function projectMeta(projects, entry) {
6
- const meta = projects.list().find((p) => p.id === entry.id);
7
- return {
8
- id: entry.id,
9
- name: meta?.name || path.basename(entry.path),
10
- path: entry.path,
11
- };
12
- }
13
-
14
- export function resolveProject(projects, target, { allowMulti = false } = {}) {
15
- if (target === undefined || target === null || target === "") {
16
- if (allowMulti) return null;
17
- const defaultProject = projects.get(0);
18
- if (defaultProject) return defaultProject;
19
- const all = projects.list();
20
- if (all.length === 1) return projects.get(all[0].id);
21
- throw new Error(`multiple projects registered (${all.length}); specify project=<id|name|path>`);
22
- }
23
-
24
- const tgt = String(target);
25
- if (tgt.toLowerCase() === "default") {
26
- const defaultProject = projects.get(0);
27
- if (!defaultProject) throw new Error("default project not available");
28
- return defaultProject;
29
- }
30
-
31
- if (typeof target === "number" || /^\d+$/.test(tgt)) {
32
- const entry = projects.get(parseInt(tgt, 10));
33
- if (!entry) throw new Error(`project id ${target} not found`);
34
- return entry;
35
- }
36
-
37
- const all = projects.list();
38
- const byPath = all.find((p) => p.path === path.resolve(tgt));
39
- if (byPath) return projects.get(byPath.id);
40
-
41
- const byName = all.find((p) => p.name === tgt);
42
- if (byName) return projects.get(byName.id);
43
-
44
- const tgtLow = tgt.toLowerCase();
45
- const fuzzy = all.filter(
46
- (p) => p.name.toLowerCase().includes(tgtLow) || p.path.toLowerCase().includes(tgtLow)
47
- );
48
- if (fuzzy.length === 1) return projects.get(fuzzy[0].id);
49
- if (fuzzy.length > 1) {
50
- throw new Error(`project "${tgt}" is ambiguous; matches: ${fuzzy.map((p) => p.name).join(", ")}`);
51
- }
52
- throw new Error(`project "${tgt}" not found`);
53
- }
54
-
55
- export function safePathJoin(root, sub = ".") {
56
- const target = path.resolve(root, sub || ".");
57
- const rootResolved = path.resolve(root);
58
- if (target !== rootResolved && !target.startsWith(rootResolved + path.sep)) {
59
- throw new Error(`path "${sub}" escapes the project root`);
60
- }
61
- return target;
62
- }
63
-
64
- export function skillsFromFields(fields = {}) {
65
- return agentSkills({ fields });
66
- }
67
-
68
- export function agentRow(agent) {
69
- return {
70
- slug: agent.slug,
71
- role: agent.fields.Role || null,
72
- model: agent.fields.Model || null,
73
- language: agent.fields.Language || null,
74
- description: agent.fields.Description || null,
75
- skills: skillsFromFields(agent.fields),
76
- };
77
- }
78
-
79
- export function buildAgentSystem(project, agent, opts = {}) {
80
- return buildCoreAgentSystem(project, agent, opts);
81
- }
82
-
83
- export function createPermissionGuard(globalConfig = {}, {
84
- implicitConfirmation = false,
85
- requestConfirmation = null,
86
- } = {}) {
87
- const permissionMode = globalConfig.super_agent?.permission_mode || "automatico";
88
- const allowedTools = new Set(globalConfig.super_agent?.allowed_tools || []);
89
-
90
- // async so tools can `await requirePermission(...)` and the confirmation
91
- // dialog resolves transparently before execution continues.
92
- return async function requirePermission(tool, { dangerous = false, confirmed = false, args } = {}) {
93
- const ok = confirmed || implicitConfirmation;
94
- if (permissionMode === "total") return;
95
-
96
- const blocked =
97
- (permissionMode === "permiso" && !allowedTools.has(tool) && !ok) ||
98
- (permissionMode === "automatico" && dangerous && !ok);
99
-
100
- if (!blocked) return;
101
-
102
- const description = buildConfirmDescription(tool, args || {});
103
-
104
- if (!requestConfirmation) {
105
- // No confirmation channel wired for this invocation context (e.g. routine,
106
- // autonomous agent). Surface a clear message so the model can explain it.
107
- throw new Error(`Action requires user confirmation: ${description}`);
108
- }
109
-
110
- const userConfirmed = await requestConfirmation(tool, args || {}, description);
111
-
112
- if (!userConfirmed) {
113
- throw new Error(`User did not confirm: ${description}`);
114
- }
115
- // Confirmed — fall through, tool executes normally.
116
- };
117
- }
118
-
119
- export function confirmedProperty(description) {
120
- return {
121
- type: "boolean",
122
- description: description || "true only after explicit user confirmation for this exact action",
123
- };
124
- }
@@ -1,2 +0,0 @@
1
- // Compat shim — parser moved to core/agent/tool-call-parser.js
2
- export * from "../../core/agent/tool-call-parser.js";