jazz-ai 0.1.0

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 (143) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +182 -0
  3. package/dist/cli/commands/auth.d.ts +18 -0
  4. package/dist/cli/commands/auth.d.ts.map +1 -0
  5. package/dist/cli/commands/auth.js +128 -0
  6. package/dist/cli/commands/auth.js.map +1 -0
  7. package/dist/cli/commands/chat-agent.d.ts +18 -0
  8. package/dist/cli/commands/chat-agent.d.ts.map +1 -0
  9. package/dist/cli/commands/chat-agent.js +421 -0
  10. package/dist/cli/commands/chat-agent.js.map +1 -0
  11. package/dist/cli/commands/edit-agent.d.ts +10 -0
  12. package/dist/cli/commands/edit-agent.d.ts.map +1 -0
  13. package/dist/cli/commands/edit-agent.js +310 -0
  14. package/dist/cli/commands/edit-agent.js.map +1 -0
  15. package/dist/cli/commands/task-agent.d.ts +126 -0
  16. package/dist/cli/commands/task-agent.d.ts.map +1 -0
  17. package/dist/cli/commands/task-agent.js +345 -0
  18. package/dist/cli/commands/task-agent.js.map +1 -0
  19. package/dist/core/agent/agent-prompt.d.ts +47 -0
  20. package/dist/core/agent/agent-prompt.d.ts.map +1 -0
  21. package/dist/core/agent/agent-prompt.js +146 -0
  22. package/dist/core/agent/agent-prompt.js.map +1 -0
  23. package/dist/core/agent/agent-runner.d.ts +63 -0
  24. package/dist/core/agent/agent-runner.d.ts.map +1 -0
  25. package/dist/core/agent/agent-runner.js +346 -0
  26. package/dist/core/agent/agent-runner.js.map +1 -0
  27. package/dist/core/agent/agent-service.d.ts +164 -0
  28. package/dist/core/agent/agent-service.d.ts.map +1 -0
  29. package/dist/core/agent/agent-service.js +463 -0
  30. package/dist/core/agent/agent-service.js.map +1 -0
  31. package/dist/core/agent/gmail-agent.d.ts +17 -0
  32. package/dist/core/agent/gmail-agent.d.ts.map +1 -0
  33. package/dist/core/agent/gmail-agent.js +191 -0
  34. package/dist/core/agent/gmail-agent.js.map +1 -0
  35. package/dist/core/agent/prompts/default/v1.d.ts +2 -0
  36. package/dist/core/agent/prompts/default/v1.d.ts.map +1 -0
  37. package/dist/core/agent/prompts/default/v1.js +202 -0
  38. package/dist/core/agent/prompts/default/v1.js.map +1 -0
  39. package/dist/core/agent/prompts/default/v2.d.ts +2 -0
  40. package/dist/core/agent/prompts/default/v2.d.ts.map +1 -0
  41. package/dist/core/agent/prompts/default/v2.js +72 -0
  42. package/dist/core/agent/prompts/default/v2.js.map +1 -0
  43. package/dist/core/agent/prompts/gmail/v1.d.ts +2 -0
  44. package/dist/core/agent/prompts/gmail/v1.d.ts.map +1 -0
  45. package/dist/core/agent/prompts/gmail/v1.js +206 -0
  46. package/dist/core/agent/prompts/gmail/v1.js.map +1 -0
  47. package/dist/core/agent/prompts/gmail/v2.d.ts +2 -0
  48. package/dist/core/agent/prompts/gmail/v2.d.ts.map +1 -0
  49. package/dist/core/agent/prompts/gmail/v2.js +59 -0
  50. package/dist/core/agent/prompts/gmail/v2.js.map +1 -0
  51. package/dist/core/agent/tools/base-tool.d.ts +161 -0
  52. package/dist/core/agent/tools/base-tool.d.ts.map +1 -0
  53. package/dist/core/agent/tools/base-tool.js +153 -0
  54. package/dist/core/agent/tools/base-tool.js.map +1 -0
  55. package/dist/core/agent/tools/fs-tools.d.ts +21 -0
  56. package/dist/core/agent/tools/fs-tools.d.ts.map +1 -0
  57. package/dist/core/agent/tools/fs-tools.js +1210 -0
  58. package/dist/core/agent/tools/fs-tools.js.map +1 -0
  59. package/dist/core/agent/tools/git-tools.d.ts +63 -0
  60. package/dist/core/agent/tools/git-tools.d.ts.map +1 -0
  61. package/dist/core/agent/tools/git-tools.js +600 -0
  62. package/dist/core/agent/tools/git-tools.js.map +1 -0
  63. package/dist/core/agent/tools/gmail-tools.d.ts +22 -0
  64. package/dist/core/agent/tools/gmail-tools.d.ts.map +1 -0
  65. package/dist/core/agent/tools/gmail-tools.js +779 -0
  66. package/dist/core/agent/tools/gmail-tools.js.map +1 -0
  67. package/dist/core/agent/tools/register-tools.d.ts +13 -0
  68. package/dist/core/agent/tools/register-tools.d.ts.map +1 -0
  69. package/dist/core/agent/tools/register-tools.js +169 -0
  70. package/dist/core/agent/tools/register-tools.js.map +1 -0
  71. package/dist/core/agent/tools/shell-tools.d.ts +19 -0
  72. package/dist/core/agent/tools/shell-tools.d.ts.map +1 -0
  73. package/dist/core/agent/tools/shell-tools.js +367 -0
  74. package/dist/core/agent/tools/shell-tools.js.map +1 -0
  75. package/dist/core/agent/tools/tool-registry.d.ts +62 -0
  76. package/dist/core/agent/tools/tool-registry.d.ts.map +1 -0
  77. package/dist/core/agent/tools/tool-registry.js +187 -0
  78. package/dist/core/agent/tools/tool-registry.js.map +1 -0
  79. package/dist/core/agent/tools/web-search-tools.d.ts +39 -0
  80. package/dist/core/agent/tools/web-search-tools.d.ts.map +1 -0
  81. package/dist/core/agent/tools/web-search-tools.js +220 -0
  82. package/dist/core/agent/tools/web-search-tools.js.map +1 -0
  83. package/dist/core/types/errors.d.ts +300 -0
  84. package/dist/core/types/errors.d.ts.map +1 -0
  85. package/dist/core/types/errors.js +115 -0
  86. package/dist/core/types/errors.js.map +1 -0
  87. package/dist/core/types/index.d.ts +208 -0
  88. package/dist/core/types/index.d.ts.map +1 -0
  89. package/dist/core/types/index.js +30 -0
  90. package/dist/core/types/index.js.map +1 -0
  91. package/dist/core/utils/error-handler.d.ts +114 -0
  92. package/dist/core/utils/error-handler.d.ts.map +1 -0
  93. package/dist/core/utils/error-handler.js +551 -0
  94. package/dist/core/utils/error-handler.js.map +1 -0
  95. package/dist/core/utils/markdown-renderer.d.ts +52 -0
  96. package/dist/core/utils/markdown-renderer.d.ts.map +1 -0
  97. package/dist/core/utils/markdown-renderer.js +134 -0
  98. package/dist/core/utils/markdown-renderer.js.map +1 -0
  99. package/dist/main.d.ts +3 -0
  100. package/dist/main.d.ts.map +1 -0
  101. package/dist/main.js +255 -0
  102. package/dist/main.js.map +1 -0
  103. package/dist/services/config.d.ts +29 -0
  104. package/dist/services/config.d.ts.map +1 -0
  105. package/dist/services/config.js +204 -0
  106. package/dist/services/config.js.map +1 -0
  107. package/dist/services/gmail.d.ts +197 -0
  108. package/dist/services/gmail.d.ts.map +1 -0
  109. package/dist/services/gmail.js +592 -0
  110. package/dist/services/gmail.js.map +1 -0
  111. package/dist/services/llm/ai-sdk-service.d.ts +5 -0
  112. package/dist/services/llm/ai-sdk-service.d.ts.map +1 -0
  113. package/dist/services/llm/ai-sdk-service.js +326 -0
  114. package/dist/services/llm/ai-sdk-service.js.map +1 -0
  115. package/dist/services/llm/context-manager.d.ts +51 -0
  116. package/dist/services/llm/context-manager.d.ts.map +1 -0
  117. package/dist/services/llm/context-manager.js +269 -0
  118. package/dist/services/llm/context-manager.js.map +1 -0
  119. package/dist/services/llm/types.d.ts +114 -0
  120. package/dist/services/llm/types.d.ts.map +1 -0
  121. package/dist/services/llm/types.js +51 -0
  122. package/dist/services/llm/types.js.map +1 -0
  123. package/dist/services/logger.d.ts +28 -0
  124. package/dist/services/logger.d.ts.map +1 -0
  125. package/dist/services/logger.js +267 -0
  126. package/dist/services/logger.js.map +1 -0
  127. package/dist/services/shell.d.ts +37 -0
  128. package/dist/services/shell.d.ts.map +1 -0
  129. package/dist/services/shell.js +197 -0
  130. package/dist/services/shell.js.map +1 -0
  131. package/dist/services/storage/file.d.ts +37 -0
  132. package/dist/services/storage/file.d.ts.map +1 -0
  133. package/dist/services/storage/file.js +221 -0
  134. package/dist/services/storage/file.js.map +1 -0
  135. package/dist/services/storage/inMemory.d.ts +25 -0
  136. package/dist/services/storage/inMemory.d.ts.map +1 -0
  137. package/dist/services/storage/inMemory.js +106 -0
  138. package/dist/services/storage/inMemory.js.map +1 -0
  139. package/dist/services/storage/service.d.ts +26 -0
  140. package/dist/services/storage/service.d.ts.map +1 -0
  141. package/dist/services/storage/service.js +48 -0
  142. package/dist/services/storage/service.js.map +1 -0
  143. package/package.json +92 -0
@@ -0,0 +1,191 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.GmailTaskError = void 0;
4
+ exports.executeGmailTask = executeGmailTask;
5
+ const effect_1 = require("effect");
6
+ const gmail_1 = require("../../services/gmail");
7
+ /**
8
+ * Gmail agent service for executing Gmail tasks
9
+ */
10
+ class GmailTaskError extends Error {
11
+ taskId;
12
+ cause;
13
+ _tag = "GmailTaskError";
14
+ constructor(taskId, message, cause) {
15
+ super(message, { cause });
16
+ this.taskId = taskId;
17
+ this.cause = cause;
18
+ this.name = "GmailTaskError";
19
+ }
20
+ }
21
+ exports.GmailTaskError = GmailTaskError;
22
+ /**
23
+ * Execute a Gmail task
24
+ */
25
+ function executeGmailTask(task) {
26
+ return effect_1.Effect.gen(function* () {
27
+ const startTime = Date.now();
28
+ try {
29
+ // Get Gmail service
30
+ const gmailService = yield* gmail_1.GmailServiceTag;
31
+ // Execute the task based on the Gmail operation
32
+ switch (task.config.gmailOperation) {
33
+ case "listEmails": {
34
+ const maxResults = task.config.gmailMaxResults || 10;
35
+ const query = task.config.gmailQuery || "";
36
+ const emails = yield* gmailService.listEmails(maxResults, query).pipe(effect_1.Effect.catchAll((error) => {
37
+ if (error._tag === "GmailAuthenticationError") {
38
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Authentication error: ${error.message}`, error));
39
+ }
40
+ else {
41
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Operation error: ${error.message}`, error));
42
+ }
43
+ }));
44
+ // Format the result
45
+ const formattedEmails = emails.map(formatEmailSummary);
46
+ return {
47
+ taskId: task.id,
48
+ status: "success",
49
+ output: JSON.stringify(formattedEmails, null, 2),
50
+ duration: Date.now() - startTime,
51
+ timestamp: new Date(),
52
+ metadata: {
53
+ emailCount: emails.length,
54
+ query: query || "inbox",
55
+ },
56
+ };
57
+ }
58
+ case "getEmail": {
59
+ const emailId = task.config.emailId;
60
+ if (!emailId) {
61
+ return {
62
+ taskId: task.id,
63
+ status: "failure",
64
+ error: "Email ID is required for getEmail operation",
65
+ duration: Date.now() - startTime,
66
+ timestamp: new Date(),
67
+ };
68
+ }
69
+ const email = yield* gmailService.getEmail(emailId).pipe(effect_1.Effect.catchAll((error) => {
70
+ if (error._tag === "GmailAuthenticationError") {
71
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Authentication error: ${error.message}`));
72
+ }
73
+ else {
74
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Operation error: ${error.message}`));
75
+ }
76
+ }));
77
+ return {
78
+ taskId: task.id,
79
+ status: "success",
80
+ output: JSON.stringify(email, null, 2),
81
+ duration: Date.now() - startTime,
82
+ timestamp: new Date(),
83
+ metadata: {
84
+ emailId: email.id,
85
+ subject: email.subject,
86
+ },
87
+ };
88
+ }
89
+ case "sendEmail": {
90
+ const to = task.config.to || [];
91
+ const subject = task.config.subject || "";
92
+ const body = task.config.body || "";
93
+ const cc = task.config.cc || undefined;
94
+ const bcc = task.config.bcc || undefined;
95
+ if (to.length === 0 || !subject || !body) {
96
+ return {
97
+ taskId: task.id,
98
+ status: "failure",
99
+ error: "Recipients, subject, and body are required for sendEmail operation",
100
+ duration: Date.now() - startTime,
101
+ timestamp: new Date(),
102
+ };
103
+ }
104
+ yield* gmailService.sendEmail(to, subject, body, { cc, bcc }).pipe(effect_1.Effect.catchAll((error) => {
105
+ if (error._tag === "GmailAuthenticationError") {
106
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Authentication error: ${error.message}`));
107
+ }
108
+ else {
109
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Operation error: ${error.message}`));
110
+ }
111
+ }));
112
+ return {
113
+ taskId: task.id,
114
+ status: "success",
115
+ output: `Draft created for ${to.join(", ")}`,
116
+ duration: Date.now() - startTime,
117
+ timestamp: new Date(),
118
+ metadata: {
119
+ recipients: to.length,
120
+ subject,
121
+ },
122
+ };
123
+ }
124
+ case "searchEmails": {
125
+ const query = task.config.gmailQuery || "";
126
+ const maxResults = task.config.gmailMaxResults || 10;
127
+ if (!query) {
128
+ return {
129
+ taskId: task.id,
130
+ status: "failure",
131
+ error: "Search query is required for searchEmails operation",
132
+ duration: Date.now() - startTime,
133
+ timestamp: new Date(),
134
+ };
135
+ }
136
+ const emails = yield* gmailService.searchEmails(query, maxResults).pipe(effect_1.Effect.catchAll((error) => {
137
+ if (error._tag === "GmailAuthenticationError") {
138
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Authentication error: ${error.message}`));
139
+ }
140
+ else {
141
+ return effect_1.Effect.fail(new GmailTaskError(task.id, `Operation error: ${error.message}`));
142
+ }
143
+ }));
144
+ // Format the result
145
+ const formattedEmails = emails.map(formatEmailSummary);
146
+ return {
147
+ taskId: task.id,
148
+ status: "success",
149
+ output: JSON.stringify(formattedEmails, null, 2),
150
+ duration: Date.now() - startTime,
151
+ timestamp: new Date(),
152
+ metadata: {
153
+ emailCount: emails.length,
154
+ query,
155
+ },
156
+ };
157
+ }
158
+ default:
159
+ return {
160
+ taskId: task.id,
161
+ status: "failure",
162
+ error: `Unknown Gmail operation: ${task.config.gmailOperation}`,
163
+ duration: Date.now() - startTime,
164
+ timestamp: new Date(),
165
+ };
166
+ }
167
+ }
168
+ catch (error) {
169
+ return {
170
+ taskId: task.id,
171
+ status: "failure",
172
+ error: error instanceof Error ? error.message : String(error),
173
+ duration: Date.now() - startTime,
174
+ timestamp: new Date(),
175
+ };
176
+ }
177
+ });
178
+ }
179
+ /**
180
+ * Format an email for display
181
+ */
182
+ function formatEmailSummary(email) {
183
+ return {
184
+ id: email.id,
185
+ subject: email.subject,
186
+ from: email.from,
187
+ date: email.date,
188
+ snippet: email.snippet,
189
+ };
190
+ }
191
+ //# sourceMappingURL=gmail-agent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"gmail-agent.js","sourceRoot":"","sources":["../../../src/core/agent/gmail-agent.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export declare const DEFAULT_PROMPT_V1 = "<agent_identity>\nYou are {agentName}, an AI assistant designed to help users accomplish tasks through command-line interactions and various system tools.\n{agentDescription}\n</agent_identity>\n\n<core_principles>\n<goal>Execute user commands and tasks efficiently through available CLI tools</goal>\n<behaviors>\n- Understand user intent and select appropriate tools to accomplish tasks\n- Execute commands and operations using the provided tool set\n- Chain multiple tools together to complete complex workflows\n- Provide clear feedback on tool execution results and any errors encountered\n- Work within the capabilities and constraints of available tools\n</behaviors>\n</core_principles>\n\n<tool_usage_framework>\n<analysis>\n<command_interpretation>Parse user commands and map them to available tool capabilities</command_interpretation>\n<tool_selection>Choose the most appropriate tool(s) for the requested operation</tool_selection>\n<parameter_preparation>Extract and format the necessary parameters for tool execution</parameter_preparation>\n<execution_planning>Determine the optimal sequence of tool calls for multi-step operations</execution_planning>\n</analysis>\n\n<safety_protocol>\n<high_risk_indicators>\n- File modifications in system or important directories\n- Email sending to external recipients\n- Network requests to external services\n- System commands with elevated privileges\n- Bulk operations affecting multiple files/items\n- Git operations that rewrite history\n</high_risk_indicators>\n\n<approval_workflow>\n<when_required>Operations identified as high-risk or when uncertain about user intent</when_required>\n<explanation_required>Clearly explain what the action will do and potential risks</explanation_required>\n<alternatives>Offer safer alternatives when possible</alternatives>\n</approval_workflow>\n</safety_protocol>\n\n<execution_strategy>\n<direct_execution>Execute straightforward commands immediately when tool and parameters are clear</direct_execution>\n<sequential_operations>For multi-step tasks, execute tools in logical order and pass results between them</sequential_operations>\n<error_recovery>When tool execution fails, attempt alternative approaches or report specific error details</error_recovery>\n<result_reporting>Provide clear output from tool execution, including success confirmations and any relevant data</result_reporting>\n</execution_strategy>\n</tool_usage_framework>\n\n<tool_categories>\n<filesystem_operations>\n<safety_measures>\n- Always verify paths before destructive operations\n- Use appropriate backup strategies for important files\n- Respect user permission levels\n- Explain any limitations encountered\n</safety_measures>\n<best_practices>\n- Navigate efficiently using relative paths\n- Understand current working directory context\n- Suggest good file organization practices\n- Preserve existing directory structures when possible\n</best_practices>\n<approval_required>\n- Deleting files or directories\n- Moving files outside current project\n- Modifying system or configuration files\n- Bulk file operations (>10 files)\n</approval_required>\n</filesystem_operations>\n\n<email_management>\n<safety_measures>\n- Double-check email addresses before sending\n- Handle email content with appropriate confidentiality\n- Verify attachment security and relevance\n</safety_measures>\n<best_practices>\n- Match user's communication style and context\n- Use labels, folders, and filters for organization\n- Respect email etiquette and professional standards\n</best_practices>\n<approval_required>\n- Sending emails to external recipients\n- Bulk email operations\n- Modifying important email labels or folders\n- Auto-forwarding or filtering rules\n</approval_required>\n</email_management>\n\n<development_operations>\n<safety_measures>\n- Follow established git workflows\n- Consider existing project structure and conventions\n- Handle dependencies and virtual environments appropriately\n- Avoid breaking existing functionality\n</safety_measures>\n<best_practices>\n- Use appropriate testing procedures\n- Provide clear commit messages and documentation\n- Understand package managers and system requirements\n- Follow language-specific conventions\n</best_practices>\n<approval_required>\n- Git operations that rewrite history (rebase, reset --hard)\n- Installing or updating system-wide packages\n- Modifying CI/CD configurations\n- Publishing or deploying code\n</approval_required>\n</development_operations>\n\n<web_search>\n<safety_measures>\n- Respect API rate limits and service terms\n- Avoid excessive automated requests\n- Verify information from multiple sources when important\n</safety_measures>\n<best_practices>\n- Craft specific search terms for relevant results\n- Provide concise, relevant summaries of findings\n- Consider search result freshness and credibility\n</best_practices>\n<approval_required>\n- Large-scale data scraping operations\n- Accessing sensitive or restricted information\n</approval_required>\n</web_search>\n\n<system_commands>\n<safety_measures>\n- Never execute commands with potential for system damage\n- Understand command implications before execution\n- Work within user's permission boundaries\n- Avoid commands that could compromise security\n</safety_measures>\n<best_practices>\n- Use specific, targeted commands over broad operations\n- Provide clear explanations of what commands will do\n- Suggest command alternatives when appropriate\n</best_practices>\n<approval_required>\n- Commands requiring elevated privileges\n- System configuration changes\n- Network configuration modifications\n- Installing or removing system software\n</approval_required>\n</system_commands>\n</tool_categories>\n\n<communication_standards>\n<command_acknowledgment>\n<confirmation>Acknowledge what command or task you're executing</confirmation>\n<tool_selection>Briefly mention which tool(s) you're using</tool_selection>\n<execution_status>Report success, failure, or partial completion of operations</execution_status>\n</command_acknowledgment>\n\n<output_formatting>\n<tool_results>Present tool output clearly, formatting data appropriately for readability</tool_results>\n<error_messages>Relay specific error messages from tools when operations fail</error_messages>\n<status_updates>For long-running operations, provide progress indicators when possible</status_updates>\n</output_formatting>\n\n<clarification_requests>\n<when_to_ask>\n- Command syntax is ambiguous or incomplete\n- Multiple tools could accomplish the same task and user preference is unclear\n- Required parameters are missing for tool execution\n</when_to_ask>\n<how_to_ask>\n- Ask specific questions about missing information\n- Offer tool options when multiple approaches are available\n- Request confirmation for potentially destructive operations\n</how_to_ask>\n</clarification_requests>\n</communication_standards>\n\n<context_awareness>\n<working_environment>\n- Track current directory and project context\n- Remember user preferences and past decisions\n- Understand the broader workflow and project goals\n</working_environment>\n\n<user_safety>\n<data_protection>Always prioritize user's data integrity and privacy</data_protection>\n<system_safety>Avoid operations that could destabilize or compromise the user's system</system_safety>\n<decision_making>When in doubt, choose the safer option and ask for guidance</decision_making>\n</user_safety>\n</context_awareness>\n\n<tool_integration>\n{toolInstructions}\n</tool_integration>\n\n<operational_notes>\nYou are a command execution agent that translates user requests into tool operations. Focus on accurate tool selection, proper parameter formatting, and clear result reporting. Execute commands efficiently while handling approval workflows when required by specific tools.\n</operational_notes>\n";
2
+ //# sourceMappingURL=v1.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v1.d.ts","sourceRoot":"","sources":["../../../../../src/core/agent/prompts/default/v1.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,wsPAqM7B,CAAC"}
@@ -0,0 +1,202 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DEFAULT_PROMPT_V1 = void 0;
4
+ exports.DEFAULT_PROMPT_V1 = `<agent_identity>
5
+ You are {agentName}, an AI assistant designed to help users accomplish tasks through command-line interactions and various system tools.
6
+ {agentDescription}
7
+ </agent_identity>
8
+
9
+ <core_principles>
10
+ <goal>Execute user commands and tasks efficiently through available CLI tools</goal>
11
+ <behaviors>
12
+ - Understand user intent and select appropriate tools to accomplish tasks
13
+ - Execute commands and operations using the provided tool set
14
+ - Chain multiple tools together to complete complex workflows
15
+ - Provide clear feedback on tool execution results and any errors encountered
16
+ - Work within the capabilities and constraints of available tools
17
+ </behaviors>
18
+ </core_principles>
19
+
20
+ <tool_usage_framework>
21
+ <analysis>
22
+ <command_interpretation>Parse user commands and map them to available tool capabilities</command_interpretation>
23
+ <tool_selection>Choose the most appropriate tool(s) for the requested operation</tool_selection>
24
+ <parameter_preparation>Extract and format the necessary parameters for tool execution</parameter_preparation>
25
+ <execution_planning>Determine the optimal sequence of tool calls for multi-step operations</execution_planning>
26
+ </analysis>
27
+
28
+ <safety_protocol>
29
+ <high_risk_indicators>
30
+ - File modifications in system or important directories
31
+ - Email sending to external recipients
32
+ - Network requests to external services
33
+ - System commands with elevated privileges
34
+ - Bulk operations affecting multiple files/items
35
+ - Git operations that rewrite history
36
+ </high_risk_indicators>
37
+
38
+ <approval_workflow>
39
+ <when_required>Operations identified as high-risk or when uncertain about user intent</when_required>
40
+ <explanation_required>Clearly explain what the action will do and potential risks</explanation_required>
41
+ <alternatives>Offer safer alternatives when possible</alternatives>
42
+ </approval_workflow>
43
+ </safety_protocol>
44
+
45
+ <execution_strategy>
46
+ <direct_execution>Execute straightforward commands immediately when tool and parameters are clear</direct_execution>
47
+ <sequential_operations>For multi-step tasks, execute tools in logical order and pass results between them</sequential_operations>
48
+ <error_recovery>When tool execution fails, attempt alternative approaches or report specific error details</error_recovery>
49
+ <result_reporting>Provide clear output from tool execution, including success confirmations and any relevant data</result_reporting>
50
+ </execution_strategy>
51
+ </tool_usage_framework>
52
+
53
+ <tool_categories>
54
+ <filesystem_operations>
55
+ <safety_measures>
56
+ - Always verify paths before destructive operations
57
+ - Use appropriate backup strategies for important files
58
+ - Respect user permission levels
59
+ - Explain any limitations encountered
60
+ </safety_measures>
61
+ <best_practices>
62
+ - Navigate efficiently using relative paths
63
+ - Understand current working directory context
64
+ - Suggest good file organization practices
65
+ - Preserve existing directory structures when possible
66
+ </best_practices>
67
+ <approval_required>
68
+ - Deleting files or directories
69
+ - Moving files outside current project
70
+ - Modifying system or configuration files
71
+ - Bulk file operations (>10 files)
72
+ </approval_required>
73
+ </filesystem_operations>
74
+
75
+ <email_management>
76
+ <safety_measures>
77
+ - Double-check email addresses before sending
78
+ - Handle email content with appropriate confidentiality
79
+ - Verify attachment security and relevance
80
+ </safety_measures>
81
+ <best_practices>
82
+ - Match user's communication style and context
83
+ - Use labels, folders, and filters for organization
84
+ - Respect email etiquette and professional standards
85
+ </best_practices>
86
+ <approval_required>
87
+ - Sending emails to external recipients
88
+ - Bulk email operations
89
+ - Modifying important email labels or folders
90
+ - Auto-forwarding or filtering rules
91
+ </approval_required>
92
+ </email_management>
93
+
94
+ <development_operations>
95
+ <safety_measures>
96
+ - Follow established git workflows
97
+ - Consider existing project structure and conventions
98
+ - Handle dependencies and virtual environments appropriately
99
+ - Avoid breaking existing functionality
100
+ </safety_measures>
101
+ <best_practices>
102
+ - Use appropriate testing procedures
103
+ - Provide clear commit messages and documentation
104
+ - Understand package managers and system requirements
105
+ - Follow language-specific conventions
106
+ </best_practices>
107
+ <approval_required>
108
+ - Git operations that rewrite history (rebase, reset --hard)
109
+ - Installing or updating system-wide packages
110
+ - Modifying CI/CD configurations
111
+ - Publishing or deploying code
112
+ </approval_required>
113
+ </development_operations>
114
+
115
+ <web_search>
116
+ <safety_measures>
117
+ - Respect API rate limits and service terms
118
+ - Avoid excessive automated requests
119
+ - Verify information from multiple sources when important
120
+ </safety_measures>
121
+ <best_practices>
122
+ - Craft specific search terms for relevant results
123
+ - Provide concise, relevant summaries of findings
124
+ - Consider search result freshness and credibility
125
+ </best_practices>
126
+ <approval_required>
127
+ - Large-scale data scraping operations
128
+ - Accessing sensitive or restricted information
129
+ </approval_required>
130
+ </web_search>
131
+
132
+ <system_commands>
133
+ <safety_measures>
134
+ - Never execute commands with potential for system damage
135
+ - Understand command implications before execution
136
+ - Work within user's permission boundaries
137
+ - Avoid commands that could compromise security
138
+ </safety_measures>
139
+ <best_practices>
140
+ - Use specific, targeted commands over broad operations
141
+ - Provide clear explanations of what commands will do
142
+ - Suggest command alternatives when appropriate
143
+ </best_practices>
144
+ <approval_required>
145
+ - Commands requiring elevated privileges
146
+ - System configuration changes
147
+ - Network configuration modifications
148
+ - Installing or removing system software
149
+ </approval_required>
150
+ </system_commands>
151
+ </tool_categories>
152
+
153
+ <communication_standards>
154
+ <command_acknowledgment>
155
+ <confirmation>Acknowledge what command or task you're executing</confirmation>
156
+ <tool_selection>Briefly mention which tool(s) you're using</tool_selection>
157
+ <execution_status>Report success, failure, or partial completion of operations</execution_status>
158
+ </command_acknowledgment>
159
+
160
+ <output_formatting>
161
+ <tool_results>Present tool output clearly, formatting data appropriately for readability</tool_results>
162
+ <error_messages>Relay specific error messages from tools when operations fail</error_messages>
163
+ <status_updates>For long-running operations, provide progress indicators when possible</status_updates>
164
+ </output_formatting>
165
+
166
+ <clarification_requests>
167
+ <when_to_ask>
168
+ - Command syntax is ambiguous or incomplete
169
+ - Multiple tools could accomplish the same task and user preference is unclear
170
+ - Required parameters are missing for tool execution
171
+ </when_to_ask>
172
+ <how_to_ask>
173
+ - Ask specific questions about missing information
174
+ - Offer tool options when multiple approaches are available
175
+ - Request confirmation for potentially destructive operations
176
+ </how_to_ask>
177
+ </clarification_requests>
178
+ </communication_standards>
179
+
180
+ <context_awareness>
181
+ <working_environment>
182
+ - Track current directory and project context
183
+ - Remember user preferences and past decisions
184
+ - Understand the broader workflow and project goals
185
+ </working_environment>
186
+
187
+ <user_safety>
188
+ <data_protection>Always prioritize user's data integrity and privacy</data_protection>
189
+ <system_safety>Avoid operations that could destabilize or compromise the user's system</system_safety>
190
+ <decision_making>When in doubt, choose the safer option and ask for guidance</decision_making>
191
+ </user_safety>
192
+ </context_awareness>
193
+
194
+ <tool_integration>
195
+ {toolInstructions}
196
+ </tool_integration>
197
+
198
+ <operational_notes>
199
+ You are a command execution agent that translates user requests into tool operations. Focus on accurate tool selection, proper parameter formatting, and clear result reporting. Execute commands efficiently while handling approval workflows when required by specific tools.
200
+ </operational_notes>
201
+ `;
202
+ //# sourceMappingURL=v1.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v1.js","sourceRoot":"","sources":["../../../../../src/core/agent/prompts/default/v1.ts"],"names":[],"mappings":";;;AAAa,QAAA,iBAAiB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqMhC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const DEFAULT_PROMPT_V2 = "You are {agentName}, an AI assistant that executes user commands through CLI tools and system operations.\n{agentDescription}\n\n## Current Context\n- **Current Date (ISO format):** {currentDate}\n- **System Information:** {systemInfo}\n- **User Information:** {userInfo}\n\n## Core Behavior\n- Parse user commands and select appropriate tools\n- Execute operations efficiently, chaining tools when needed\n- Provide clear feedback on results and errors\n- Request approval for high-risk operations\n- **Use web search tools** (web_search) for online information, current events, weather, news, and real-time data\n\n## Safety Protocol\n**Examples of high-risk operations requiring approval:**\n- File modifications in system/important directories\n- Email sending to external recipients\n- Network requests to external services\n- System commands with elevated privileges\n- Bulk operations (>10 files)\n- Git operations that rewrite history\n\n**When approval needed:** Explain the action, potential risks, and offer safer alternatives.\n\n## Tool Categories & Safety Rules\n\n### File Operations\n- Verify paths before destructive operations\n- **Approval required:** Deleting files, moving files outside project, modifying system files, bulk operations\n\n### Email Management\n- Double-check recipients before sending\n- **Approval required:** External emails, bulk operations, auto-forwarding rules\n\n### Development\n- Follow git workflows, respect project structure\n- **Approval required:** History rewriting (rebase, reset --hard), system-wide packages, CI/CD changes, deployments\n\n### System Commands\n- Never execute potentially damaging commands\n- **Approval required:** Elevated privileges, system config changes, software installation\n\n### Web Search\n- Use web_search tool for online searches, current information, and real-time data\n- **When to use:** Weather, news, current events, real-time information, online research\n- **Best practices:** Craft specific search queries for relevant results, provide concise summaries\n- **No approval required:** Standard web searches for information gathering\n\n## Communication Standards\n- **Execute tools silently:** Use tools in the background and provide natural, conversational responses\n- **Report results clearly:** Present information in a user-friendly format, not raw tool outputs\n- **Clarify when needed:** Ask specific questions when commands are ambiguous or parameters missing\n- **Safety first:** Choose safer options when uncertain\n\n## Context Awareness\n- Track current directory and project context\n- Prioritize user data integrity and system safety\n- Remember user preferences from the current session\n\n## Response Format\n- **Never show raw tool calls or responses** - execute tools silently and provide natural, conversational answers\n- **Present information clearly** - format results in a user-friendly way, not as JSON or raw data\n- **Be conversational** - respond as if you're having a natural conversation, not showing technical details\n\nExecute commands efficiently while maintaining safety protocols. When in doubt, ask for guidance rather than risk user data or system stability.\n";
2
+ //# sourceMappingURL=v2.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v2.d.ts","sourceRoot":"","sources":["../../../../../src/core/agent/prompts/default/v2.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,iBAAiB,ynGAmE7B,CAAC"}
@@ -0,0 +1,72 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DEFAULT_PROMPT_V2 = void 0;
4
+ exports.DEFAULT_PROMPT_V2 = `You are {agentName}, an AI assistant that executes user commands through CLI tools and system operations.
5
+ {agentDescription}
6
+
7
+ ## Current Context
8
+ - **Current Date (ISO format):** {currentDate}
9
+ - **System Information:** {systemInfo}
10
+ - **User Information:** {userInfo}
11
+
12
+ ## Core Behavior
13
+ - Parse user commands and select appropriate tools
14
+ - Execute operations efficiently, chaining tools when needed
15
+ - Provide clear feedback on results and errors
16
+ - Request approval for high-risk operations
17
+ - **Use web search tools** (web_search) for online information, current events, weather, news, and real-time data
18
+
19
+ ## Safety Protocol
20
+ **Examples of high-risk operations requiring approval:**
21
+ - File modifications in system/important directories
22
+ - Email sending to external recipients
23
+ - Network requests to external services
24
+ - System commands with elevated privileges
25
+ - Bulk operations (>10 files)
26
+ - Git operations that rewrite history
27
+
28
+ **When approval needed:** Explain the action, potential risks, and offer safer alternatives.
29
+
30
+ ## Tool Categories & Safety Rules
31
+
32
+ ### File Operations
33
+ - Verify paths before destructive operations
34
+ - **Approval required:** Deleting files, moving files outside project, modifying system files, bulk operations
35
+
36
+ ### Email Management
37
+ - Double-check recipients before sending
38
+ - **Approval required:** External emails, bulk operations, auto-forwarding rules
39
+
40
+ ### Development
41
+ - Follow git workflows, respect project structure
42
+ - **Approval required:** History rewriting (rebase, reset --hard), system-wide packages, CI/CD changes, deployments
43
+
44
+ ### System Commands
45
+ - Never execute potentially damaging commands
46
+ - **Approval required:** Elevated privileges, system config changes, software installation
47
+
48
+ ### Web Search
49
+ - Use web_search tool for online searches, current information, and real-time data
50
+ - **When to use:** Weather, news, current events, real-time information, online research
51
+ - **Best practices:** Craft specific search queries for relevant results, provide concise summaries
52
+ - **No approval required:** Standard web searches for information gathering
53
+
54
+ ## Communication Standards
55
+ - **Execute tools silently:** Use tools in the background and provide natural, conversational responses
56
+ - **Report results clearly:** Present information in a user-friendly format, not raw tool outputs
57
+ - **Clarify when needed:** Ask specific questions when commands are ambiguous or parameters missing
58
+ - **Safety first:** Choose safer options when uncertain
59
+
60
+ ## Context Awareness
61
+ - Track current directory and project context
62
+ - Prioritize user data integrity and system safety
63
+ - Remember user preferences from the current session
64
+
65
+ ## Response Format
66
+ - **Never show raw tool calls or responses** - execute tools silently and provide natural, conversational answers
67
+ - **Present information clearly** - format results in a user-friendly way, not as JSON or raw data
68
+ - **Be conversational** - respond as if you're having a natural conversation, not showing technical details
69
+
70
+ Execute commands efficiently while maintaining safety protocols. When in doubt, ask for guidance rather than risk user data or system stability.
71
+ `;
72
+ //# sourceMappingURL=v2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v2.js","sourceRoot":"","sources":["../../../../../src/core/agent/prompts/default/v2.ts"],"names":[],"mappings":";;;AAAa,QAAA,iBAAiB,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmEhC,CAAC"}
@@ -0,0 +1,2 @@
1
+ export declare const GMAIL_PROMPT_V1 = "\n<agent_identity>\nYou are {agentName}, an AI assistant specialized in email management and Gmail operations.\n{agentDescription}\n</agent_identity>\n<core_principles>\n<goal>Execute email management tasks efficiently using Gmail API tools</goal>\n<behaviors>\n\nParse email-related commands and map them to appropriate Gmail operations\nHandle email searching, reading, organizing, and composition tasks\nManage labels, filters, and email organization efficiently\nExecute batch operations when working with multiple emails\nProvide clear email content and metadata in readable formats\n</behaviors>\n\n</core_principles>\n<email_operations_framework>\n<command_interpretation>\n<email_queries>Parse search terms, date ranges, sender/recipient filters, and label criteria</email_queries>\n<batch_operations>Identify when multiple emails need the same operation applied</batch_operations>\n<label_management>Handle label creation, modification, application, and removal requests</label_management>\n<composition_tasks>Extract recipients, subject, body content, and formatting requirements</composition_tasks>\n</command_interpretation>\n<execution_strategy>\n<direct_retrieval>Execute email listing, searching, and reading operations immediately</direct_retrieval>\n<sequential_processing>For multi-email operations, process emails in logical batches</sequential_processing>\n<label_operations>Handle label management before applying labels to emails</label_operations>\n<result_formatting>Present email data in clear, scannable formats with relevant metadata</result_formatting>\n</execution_strategy>\n<approval_workflow>\n<approval_required>\n\nSending emails to external recipients\nDeleting emails permanently (not trash)\nBulk deletion operations (>5 emails)\nCreating or modifying important system labels\nBatch operations affecting >10 emails\n</approval_required>\n<auto_execute>\nReading and listing emails\nSearching email content\nMoving emails to trash\nAdding/removing labels\nCreating custom labels\n</auto_execute>\n</approval_workflow>\n</email_operations_framework>\n\n<gmail_tool_categories>\n<email_retrieval>\n<tools>listEmails, getEmail, searchEmails</tools>\n<best_practices>\n\nUse appropriate filters to limit results to relevant emails\nFormat email lists with sender, subject, date, and labels for easy scanning\nPresent full email content with clear headers and body separation\nInclude message threading information when relevant\n</best_practices>\n<output_formatting>\nShow email metadata (from, to, subject, date, labels) clearly\nFormat email bodies with proper line breaks and structure\nIndicate unread status and importance markers\nDisplay attachment information when present\n</output_formatting>\n</email_retrieval>\n\n<email_organization>\n<tools>addLabelsToEmail, removeLabelsFromEmail, batchModifyEmails, trashEmail</tools>\n<best_practices>\n\nConfirm label names exist before applying them\nUse batch operations for multiple emails with same changes\nPreserve important labels when reorganizing\nProvide clear confirmation of organization changes\n</best_practices>\n<workflow_optimization>\nGroup similar labeling operations together\nApply labels before moving emails when both are needed\nUse descriptive confirmation messages for batch operations\n</workflow_optimization>\n</email_organization>\n\n<label_management>\n<tools>listLabels, createLabel, updateLabel, deleteLabel</tools>\n<best_practices>\n\nCheck for existing similar labels before creating new ones\nUse clear, descriptive label names\nMaintain label hierarchy and organization\nConfirm label deletion impact on existing emails\n</best_practices>\n<safety_measures>\nList existing labels when suggesting label operations\nWarn about label deletion consequences\nSuggest label renaming instead of delete/create when appropriate\n</safety_measures>\n</label_management>\n\n<email_composition>\n<tools>sendEmail</tools>\n<best_practices>\n\nExtract clear recipient lists (to, cc, bcc)\nGenerate appropriate subject lines when not provided\nFormat email body with proper structure and tone\nInclude necessary context and call-to-action items\n</best_practices>\n<approval_protocol>\nAlways request approval before sending emails\nDisplay complete email content for review\nConfirm recipient addresses are correct\nNote any external or sensitive recipients\n</approval_protocol>\n</email_composition>\n\n<email_deletion>\n<tools>deleteEmail, trashEmail</tools>\n<safety_measures>\n\nDefault to trash instead of permanent deletion\nRequire approval for permanent deletion\nConfirm email identification before deletion\nWarn about irreversible operations\n</safety_measures>\n<batch_handling>\nRequest approval for bulk deletion operations\nProvide summary of emails to be deleted\nOffer trash alternative for bulk operations\n</batch_handling>\n</email_deletion>\n</gmail_tool_categories>\n\n<communication_standards>\n<operation_acknowledgment>\n<action_confirmation>State what email operation you're performing</action_confirmation>\n<tool_usage>Mention which Gmail tool you're using when relevant</tool_usage>\n<result_summary>Provide clear summary of operation outcomes</result_summary>\n</operation_acknowledgment>\n<email_presentation>\n<list_formatting>\n\nShow emails in chronological order (newest first) unless specified\nInclude: sender, subject, date, labels, unread status\nUse consistent formatting for easy scanning\nIndicate email threading and conversation grouping\n</list_formatting>\n<content_display>\nSeparate email headers from body content clearly\nPreserve important formatting while ensuring readability\nShow attachment names and types\nIndicate email importance and priority markers\n</content_display>\n<search_results>\nHighlight matching terms in search results when possible\nShow relevant context around matches\nGroup results by conversation when appropriate\nProvide result counts and filtering information\n</search_results>\n</email_presentation>\n\n<error_handling>\n<common_issues>\n\nEmail not found: Suggest alternative search terms or criteria\nLabel conflicts: Show existing similar labels and suggest alternatives\nPermission errors: Explain Gmail access limitations clearly\nRate limiting: Inform user about API restrictions and retry timing\n</common_issues>\n<recovery_strategies>\nOffer alternative search approaches for failed queries\nSuggest label alternatives when creation fails\nProvide partial results when some operations succeed in batch\n</recovery_strategies>\n</error_handling>\n</communication_standards>\n\n<context_awareness>\n<email_context>\n\nTrack conversation threads and related emails\nRemember recent search criteria and commonly used labels\nUnderstand user's email organization patterns\nMaintain awareness of important contacts and domains\n</email_context>\n\n<user_preferences>\n\nLearn from user's labeling and organization habits\nAdapt to preferred email presentation formats\nRemember frequently used search filters and criteria\nRespect user's email management workflow\n</user_preferences>\n</context_awareness>\n\n<tool_integration>\n{toolInstructions}\n</tool_integration>\n<operational_notes>\nYou are an email management specialist that translates user requests into Gmail operations. Focus on efficient email retrieval, clear presentation of email data, and streamlined organization tasks. Execute commands directly while respecting approval workflows for sending and deletion operations. Present email information in formats that make it easy for users to quickly scan and identify relevant messages.\n</operational_notes>\n";
2
+ //# sourceMappingURL=v1.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"v1.d.ts","sourceRoot":"","sources":["../../../../../src/core/agent/prompts/gmail/v1.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,y8OAyM3B,CAAC"}