@pi-unipi/core 0.1.4 → 0.1.5
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/constants.ts +18 -1
- package/package.json +1 -1
package/constants.ts
CHANGED
|
@@ -25,9 +25,11 @@ export const MODULES = {
|
|
|
25
25
|
REGISTRY: "@pi-unipi/registry",
|
|
26
26
|
MCP: "@pi-unipi/mcp",
|
|
27
27
|
TASK: "@pi-unipi/task",
|
|
28
|
-
|
|
28
|
+
WEB_API: "@pi-unipi/web-api",
|
|
29
29
|
IMPECCABLE: "@pi-unipi/impeccable",
|
|
30
30
|
SETTINGS: "@pi-unipi/settings",
|
|
31
|
+
UTILITY: "@pi-unipi/utility",
|
|
32
|
+
ASK_USER: "@pi-unipi/ask-user",
|
|
31
33
|
} as const;
|
|
32
34
|
|
|
33
35
|
/** Workflow command names */
|
|
@@ -132,3 +134,18 @@ export const RALPH_STATUS_ICONS = {
|
|
|
132
134
|
paused: "⏸",
|
|
133
135
|
completed: "✓",
|
|
134
136
|
} as const;
|
|
137
|
+
|
|
138
|
+
/** Utility command names */
|
|
139
|
+
export const UTILITY_COMMANDS = {
|
|
140
|
+
CONTINUE: "continue",
|
|
141
|
+
} as const;
|
|
142
|
+
|
|
143
|
+
/** Utility tool names */
|
|
144
|
+
export const UTILITY_TOOLS = {
|
|
145
|
+
CONTINUE: "continue_task",
|
|
146
|
+
} as const;
|
|
147
|
+
|
|
148
|
+
/** Ask-user tool names */
|
|
149
|
+
export const ASK_USER_TOOLS = {
|
|
150
|
+
ASK: "ask_user",
|
|
151
|
+
} as const;
|