jazz-ai 0.5.1 → 0.5.3
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/README.md +216 -108
- package/dist/app-layer.d.ts +1 -1
- package/dist/app-layer.d.ts.map +1 -1
- package/dist/cli/presentation/cli-renderer.d.ts.map +1 -1
- package/dist/core/agent/agent-runner.d.ts +1 -1
- package/dist/core/agent/agent-runner.d.ts.map +1 -1
- package/dist/core/agent/execution/tool-executor.d.ts.map +1 -1
- package/dist/core/agent/tools/fs-tools.d.ts +0 -1
- package/dist/core/agent/tools/fs-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/git-tools.d.ts +6 -0
- package/dist/core/agent/tools/git-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/register-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/shell-tools.d.ts.map +1 -1
- package/dist/core/utils/llm-error.d.ts.map +1 -1
- package/dist/main.js +1263 -196
- package/dist/services/chat-service.d.ts.map +1 -1
- package/dist/services/config.d.ts +2 -1
- package/dist/services/config.d.ts.map +1 -1
- package/dist/services/llm/ai-sdk-service.d.ts.map +1 -1
- package/dist/services/llm/stream-processor.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,24 +10,216 @@
|
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
13
|
-
##
|
|
13
|
+
## 📑 Table of Contents
|
|
14
|
+
|
|
15
|
+
- [Why Jazz?](#why-jazz)
|
|
16
|
+
- [See Jazz in Action](#see-jazz-in-action)
|
|
17
|
+
- [Quick Start](#-quick-start)
|
|
18
|
+
- [Usage Highlights](#-usage-highlights)
|
|
19
|
+
- [Built for Production](#️-built-for-production)
|
|
20
|
+
- [What's Next](#️-whats-next)
|
|
21
|
+
- [Documentation & Community](#-documentation--community)
|
|
22
|
+
- [Contributing](#-contributing)
|
|
23
|
+
- [License](#-license)
|
|
14
24
|
|
|
15
|
-
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
## Why Jazz?
|
|
28
|
+
|
|
29
|
+
### 🤖 Not Just Chat, Real Action
|
|
30
|
+
|
|
31
|
+
**Jazz doesn't just talk about work, it does the work.**
|
|
32
|
+
|
|
33
|
+
Ask Jazz to `analyze yesterday's unread emails and archive newsletters`, it connects to Gmail, reads your inbox, categorizes messages, and archives them. Ask it to `commit my changes with a good message`, it runs `git diff`, analyzes your changes, generates a semantic commit message, and commits the code. Ask it to `find all TODO comments in the codebase`, it searches your files, extracts context, and organizes them by priority.
|
|
34
|
+
|
|
35
|
+
This isn't a chatbot, it's an autonomous agent that executes multi-step workflows, makes decisions, and gets things done.
|
|
36
|
+
|
|
37
|
+
### 🎯 Purpose, Built for Workflows
|
|
16
38
|
|
|
17
|
-
|
|
39
|
+
Jazz is designed from the ground up for autonomous agents that handle multi-step, real-world tasks with contextual awareness.
|
|
18
40
|
|
|
19
|
-
|
|
41
|
+
### 🛠️ 44 Tools, Ready to Use
|
|
20
42
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
43
|
+
Git, Gmail, filesystem, shell, web search, HTTP, PDF, and more. Just create an agent and start automating. See [`docs/integrations.md`](docs/integrations.md) for setup instructions.
|
|
44
|
+
|
|
45
|
+
### 🧠 Multi LLM, Model Agnostic
|
|
46
|
+
|
|
47
|
+
Switch between OpenAI, Anthropic, Google, Mistral, xAI, DeepSeek, Ollama, Openrouter and more, even mid-conversation. Your agents aren't locked to one provider.
|
|
48
|
+
|
|
49
|
+
### 🔒 Safety First
|
|
50
|
+
|
|
51
|
+
**Every dangerous action requires your explicit approval.**
|
|
52
|
+
|
|
53
|
+
- **Requires confirmation**: Git commits, file changes, sending emails, shell commands, API requests
|
|
54
|
+
- **Executes automatically**: Reading files, searching, analyzing code, viewing data
|
|
55
|
+
- **Secure credentials**: OAuth2 authentication, never logged or exposed
|
|
56
|
+
- **Full audit trail**: Complete logs of every agent action for transparency and debugging
|
|
57
|
+
|
|
58
|
+
You stay in control. Jazz won't delete files, push code, or send emails without showing you exactly what it will do and waiting for your "yes".
|
|
27
59
|
|
|
28
60
|
---
|
|
29
61
|
|
|
30
|
-
##
|
|
62
|
+
## See Jazz in Action
|
|
63
|
+
|
|
64
|
+
### Example 1: Email Triage
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
$ jazz agent chat email-assistant
|
|
68
|
+
|
|
69
|
+
You: Summarize unread emails from yesterday and organize them
|
|
70
|
+
|
|
71
|
+
Agent: 📧 Found 23 unread emails from yesterday
|
|
72
|
+
|
|
73
|
+
📊 Summary:
|
|
74
|
+
- Work: 12 emails (5 from team, 4 PRs, 3 meetings)
|
|
75
|
+
- Newsletters: 8 emails
|
|
76
|
+
- Social: 3 emails
|
|
77
|
+
|
|
78
|
+
I can:
|
|
79
|
+
1. Archive all newsletters
|
|
80
|
+
2. Label work emails by sender
|
|
81
|
+
3. Draft replies for urgent items
|
|
82
|
+
|
|
83
|
+
What would you like me to do?
|
|
84
|
+
|
|
85
|
+
You: Archive newsletters and label work emails
|
|
86
|
+
|
|
87
|
+
Agent: ⚠️ About to:
|
|
88
|
+
- Archive 8 newsletter emails
|
|
89
|
+
- Add labels to 12 work emails
|
|
90
|
+
|
|
91
|
+
Proceed? (yes/no): yes
|
|
92
|
+
|
|
93
|
+
Agent: ✓ Done! Inbox organized.
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Example 2: Git Assistant
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
$ jazz agent chat git-helper
|
|
100
|
+
|
|
101
|
+
You: What changed in my code?
|
|
102
|
+
|
|
103
|
+
Agent: [Running git status...]
|
|
104
|
+
|
|
105
|
+
Found 3 modified files:
|
|
106
|
+
1. src/auth/jwt.ts - Token refresh logic added
|
|
107
|
+
2. src/middleware/auth.ts - New authentication middleware
|
|
108
|
+
3. tests/auth.test.ts - 12 new test cases
|
|
109
|
+
|
|
110
|
+
Summary:
|
|
111
|
+
- Added automatic token refresh before expiration
|
|
112
|
+
- Implemented refresh token rotation
|
|
113
|
+
- Added comprehensive test coverage
|
|
114
|
+
|
|
115
|
+
Suggested commit message:
|
|
116
|
+
"feat: implement JWT token refresh with rotation
|
|
117
|
+
|
|
118
|
+
- Add automatic refresh 5min before expiration
|
|
119
|
+
- Implement single-use refresh token rotation
|
|
120
|
+
- Add Redis caching for token blacklist
|
|
121
|
+
- Add 12 new tests covering refresh flow"
|
|
122
|
+
|
|
123
|
+
Should I commit these changes? (yes/no):
|
|
124
|
+
|
|
125
|
+
You: yes
|
|
126
|
+
|
|
127
|
+
Agent: ✓ Committed successfully
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### Example 3: Code Analyzer - Bug Analysis
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
$ jazz agent chat code-analyzer
|
|
134
|
+
|
|
135
|
+
You: I'm getting an error "Cannot read property 'id' of undefined" in src/api/users.ts. Help me analyze this bug.
|
|
136
|
+
|
|
137
|
+
Agent: [Reading src/api/users.ts...]
|
|
138
|
+
[Analyzing error context...]
|
|
139
|
+
|
|
140
|
+
Found the issue at line 45:
|
|
141
|
+
|
|
142
|
+
const user = await getUserById(userId);
|
|
143
|
+
return user.id; // ← Error: user might be undefined
|
|
144
|
+
|
|
145
|
+
Analysis:
|
|
146
|
+
- The `getUserById` function can return `undefined` if user not found
|
|
147
|
+
- Line 45 accesses `user.id` without checking if user exists
|
|
148
|
+
- This causes the error when a non-existent user ID is requested
|
|
149
|
+
|
|
150
|
+
Suggested fix:
|
|
151
|
+
1. Add null check before accessing user.id
|
|
152
|
+
2. Return appropriate error response for not found cases
|
|
153
|
+
3. Consider updating getUserById to throw an error instead
|
|
154
|
+
|
|
155
|
+
Should I show you the fix?
|
|
156
|
+
|
|
157
|
+
You: yes, apply the fix
|
|
158
|
+
|
|
159
|
+
Agent: [Applying fix...]
|
|
160
|
+
|
|
161
|
+
Updated code:
|
|
162
|
+
const user = await getUserById(userId);
|
|
163
|
+
if (!user) {
|
|
164
|
+
throw new NotFoundError(`User ${userId} not found`);
|
|
165
|
+
}
|
|
166
|
+
return user.id;
|
|
167
|
+
|
|
168
|
+
✓ Fix applied
|
|
169
|
+
✓ Added error handling
|
|
170
|
+
```
|
|
171
|
+
|
|
172
|
+
### Example 4: PDF Summary
|
|
173
|
+
|
|
174
|
+
```bash
|
|
175
|
+
$ jazz agent chat pdf-reader
|
|
176
|
+
|
|
177
|
+
You: Read the PDF at ~/Documents/bitcoin.pdf and make a summary
|
|
178
|
+
|
|
179
|
+
Agent: [Reading PDF file...]
|
|
180
|
+
✓ Successfully read ~/Documents/bitcoin.pdf
|
|
181
|
+
|
|
182
|
+
[Analyzing content...]
|
|
183
|
+
Document: "Bitcoin: A Peer-to-Peer Electronic Cash System"
|
|
184
|
+
Pages: 9
|
|
185
|
+
|
|
186
|
+
# Summary
|
|
187
|
+
|
|
188
|
+
## Overview
|
|
189
|
+
This paper introduces Bitcoin, a decentralized digital currency system
|
|
190
|
+
that enables peer-to-peer electronic transactions without requiring a
|
|
191
|
+
trusted third party.
|
|
192
|
+
|
|
193
|
+
## Key Topics
|
|
194
|
+
|
|
195
|
+
### 1. The Double-Spending Problem
|
|
196
|
+
- Traditional digital cash requires a trusted central authority
|
|
197
|
+
- Bitcoin solves this through cryptographic proof instead of trust
|
|
198
|
+
|
|
199
|
+
### 2. Network Architecture
|
|
200
|
+
- Peer-to-peer network using proof-of-work
|
|
201
|
+
- Transactions are broadcast to all nodes
|
|
202
|
+
- Nodes accept the longest proof-of-work chain as valid
|
|
203
|
+
|
|
204
|
+
### 3. Proof-of-Work Mechanism
|
|
205
|
+
- Nodes compete to solve computational puzzles
|
|
206
|
+
- Difficulty adjusts to maintain ~10 minute block times
|
|
207
|
+
- Network is resistant to attacks as long as honest nodes control
|
|
208
|
+
majority of CPU power
|
|
209
|
+
|
|
210
|
+
## Key Findings
|
|
211
|
+
- Eliminates need for financial institutions as intermediaries
|
|
212
|
+
- Transactions are irreversible once confirmed
|
|
213
|
+
- Privacy maintained through public keys (pseudonymous, not anonymous)
|
|
214
|
+
|
|
215
|
+
✓ Summary complete
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
**Want more examples?** See the [`examples/`](examples/) folder for additional use cases.
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
## 🚀 Quick Start
|
|
31
223
|
|
|
32
224
|
### 1. Install the CLI
|
|
33
225
|
|
|
@@ -47,10 +239,7 @@ yarn global add jazz-ai
|
|
|
47
239
|
|
|
48
240
|
### 2. Create Your First Agent
|
|
49
241
|
|
|
50
|
-
No prior config required — the wizard will guide you:
|
|
51
|
-
|
|
52
242
|
```bash
|
|
53
|
-
# Run the interactive wizard — if an API key is missing the wizard will ask for it
|
|
54
243
|
jazz agent create
|
|
55
244
|
```
|
|
56
245
|
|
|
@@ -67,8 +256,6 @@ jazz agent list
|
|
|
67
256
|
jazz agent chat <agent-name>
|
|
68
257
|
```
|
|
69
258
|
|
|
70
|
-
Agents stream responses, call tools, and ask for approval for any actions that change state.
|
|
71
|
-
|
|
72
259
|
---
|
|
73
260
|
|
|
74
261
|
## 📚 Usage Highlights
|
|
@@ -84,102 +271,23 @@ Agents stream responses, call tools, and ask for approval for any actions that c
|
|
|
84
271
|
|
|
85
272
|
---
|
|
86
273
|
|
|
87
|
-
##
|
|
88
|
-
|
|
89
|
-
### Multi-Provider LLM Support
|
|
90
|
-
|
|
91
|
-
OpenAI • Anthropic • Google • Ollama • Openrouter • And more...
|
|
92
|
-
|
|
93
|
-
### Safety & Auditability
|
|
94
|
-
|
|
95
|
-
Explicit approval workflow • Typed, auditable tools • Audit logs for transparency
|
|
274
|
+
## 🏗️ Built for Production
|
|
96
275
|
|
|
97
|
-
|
|
276
|
+
Jazz is built with **100% TypeScript** and **Effect-TS** for production-grade reliability:
|
|
98
277
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
278
|
+
- **Type-Safe by Design**: Explicit error types and recovery paths ensure bulletproof error handling
|
|
279
|
+
- **Security-First**: All state-changing operations require explicit approval; credentials stored securely, never logged
|
|
280
|
+
- **Input Validation**: All external inputs validated and sanitized before processing
|
|
281
|
+
- **Contextual Awareness**: Agents maintain working directory and conversation context across multi-step workflows
|
|
282
|
+
- **Intelligent Orchestration**: Smart sequencing of tools with graceful error recovery and retry logic
|
|
283
|
+
- **Complete Auditability**: Full logs of all agent actions for transparency and debugging
|
|
104
284
|
|
|
105
285
|
---
|
|
106
286
|
|
|
107
|
-
##
|
|
108
|
-
|
|
109
|
-
<details>
|
|
110
|
-
<summary><strong>Git Assistant</strong></summary>
|
|
111
|
-
|
|
112
|
-
Ask: _"what changed?"_
|
|
113
|
-
|
|
114
|
-
**Jazz will:**
|
|
115
|
-
|
|
116
|
-
1. Run `git status`
|
|
117
|
-
2. Summarize diffs
|
|
118
|
-
3. Suggest commit messages
|
|
119
|
-
4. Commit when you say "yes"
|
|
120
|
-
|
|
121
|
-
</details>
|
|
122
|
-
|
|
123
|
-
<details>
|
|
124
|
-
<summary><strong>Email Triage</strong></summary>
|
|
125
|
-
|
|
126
|
-
Ask: _"summarize unread messages from yesterday"_
|
|
127
|
-
|
|
128
|
-
**Jazz will:**
|
|
129
|
-
|
|
130
|
-
1. Read your unread messages
|
|
131
|
-
2. Provide summaries
|
|
132
|
-
3. Offer actions (draft reply, archive, label)
|
|
133
|
-
|
|
134
|
-
</details>
|
|
135
|
-
|
|
136
|
-
<details>
|
|
137
|
-
<summary><strong>Research & Report</strong></summary>
|
|
138
|
-
|
|
139
|
-
Ask: _"collect latest guides on TypeScript 5.5 and summarize sources"_
|
|
140
|
-
|
|
141
|
-
**Jazz will:**
|
|
142
|
-
|
|
143
|
-
1. Search the web
|
|
144
|
-
2. Aggregate information
|
|
145
|
-
3. Output a concise report with links
|
|
146
|
-
|
|
147
|
-
</details>
|
|
148
|
-
|
|
149
|
-
<details>
|
|
150
|
-
<summary><strong>Automated Project Onboarding</strong></summary>
|
|
151
|
-
|
|
152
|
-
Ask: _"Set up the project from github.com/user/awesome-app for local development"_
|
|
153
|
-
|
|
154
|
-
**Jazz will:**
|
|
155
|
-
|
|
156
|
-
1. Clone the repository to your preferred directory
|
|
157
|
-
2. Detect the tech stack (Node.js, Python, etc.)
|
|
158
|
-
3. Search for setup instructions in README/docs
|
|
159
|
-
4. Install dependencies (`npm install`, `pip install`, etc.)
|
|
160
|
-
5. Create `.env` file from `.env.example` and prompt for missing keys
|
|
161
|
-
6. Run initialization scripts if needed
|
|
162
|
-
7. Verify the setup by running tests
|
|
163
|
-
8. Summarize what was configured and next steps
|
|
164
|
-
|
|
165
|
-
</details>
|
|
166
|
-
|
|
167
|
-
<details>
|
|
168
|
-
<summary><strong>Dependency Security Audit</strong></summary>
|
|
169
|
-
|
|
170
|
-
Ask: _"Audit my dependencies for vulnerabilities and fix them"_
|
|
171
|
-
|
|
172
|
-
**Jazz will:**
|
|
173
|
-
|
|
174
|
-
1. Run security audit (`npm audit`, `poetry audit`, etc.)
|
|
175
|
-
2. Search CVE databases and changelogs for each vulnerability
|
|
176
|
-
3. Identify safe upgrade paths (major vs. patch versions)
|
|
177
|
-
4. Show you a summary with severity levels and fix options
|
|
178
|
-
5. Update `package.json`/`requirements.txt` with your approval
|
|
179
|
-
6. Run tests to verify nothing broke
|
|
180
|
-
7. Create a detailed commit message documenting the security fixes
|
|
287
|
+
## 🗺️ What's Next
|
|
181
288
|
|
|
182
|
-
|
|
289
|
+
Jazz is actively developed with exciting features coming.
|
|
290
|
+
See [TODO.md](TODO.md) for the full roadmap and [docs/exploration/](docs/exploration/) for research on future features.
|
|
183
291
|
|
|
184
292
|
---
|
|
185
293
|
|
|
@@ -190,7 +298,7 @@ Ask: _"Audit my dependencies for vulnerabilities and fix them"_
|
|
|
190
298
|
- **Full Documentation** — [`docs/README.md`](docs/README.md)
|
|
191
299
|
- **Examples** — [`examples/`](examples/)
|
|
192
300
|
- **Tools Reference** — [`docs/tools-reference.md`](docs/tools-reference.md)
|
|
193
|
-
- **Exploration** — [`exploration/`](exploration/) for future features and
|
|
301
|
+
- **Exploration** — [`docs/exploration/`](docs/exploration/) for future features and research
|
|
194
302
|
|
|
195
303
|
**Community:**
|
|
196
304
|
|
|
@@ -216,7 +324,7 @@ MIT — see [`LICENSE`](LICENSE).
|
|
|
216
324
|
|
|
217
325
|
<div align="center">
|
|
218
326
|
|
|
219
|
-
⭐ If Jazz helps you automate your work, please give the project a star on GitHub
|
|
327
|
+
⭐ If Jazz helps you automate your work, please give the project a star on GitHub, it helps others find it!
|
|
220
328
|
|
|
221
329
|
[⬆ Back to top](#jazz-)
|
|
222
330
|
|
package/dist/app-layer.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export interface AppLayerConfig {
|
|
|
6
6
|
debug?: boolean | undefined;
|
|
7
7
|
configPath?: string | undefined;
|
|
8
8
|
}
|
|
9
|
-
export declare function createAppLayer(config?: AppLayerConfig): Layer.Layer<import("./core/interfaces/presentation").PresentationService | import("./core/interfaces/agent-config").AgentConfigService | import("./core/interfaces/calendar").CalendarService | import("./core/interfaces/fs").FileSystemContextService | FileSystem.FileSystem | import("./core/interfaces/gmail").GmailService | import("./core/interfaces/logger").LoggerService | import("./core/interfaces/tool-registry").ToolRegistry | import("./core/interfaces/storage").StorageService | import("./core/interfaces/terminal").TerminalService | import("./core/interfaces/agent-service").AgentService | import("./core/interfaces/llm").LLMService | import("./core/interfaces/chat-service").ChatService, Error | import("./core/types").LLMConfigurationError, import("effect/Context").Tag<import("./core/interfaces/agent-config").AgentConfigService, import("./core/interfaces/agent-config").AgentConfigService> | FileSystem.FileSystem | import("effect/Context").Tag<import("./core/interfaces/tool-registry").ToolRegistry, import("./core/interfaces/tool-registry").ToolRegistry> | import("./core/interfaces/terminal").TerminalService | import("effect/Context").Tag<import("./core/interfaces/agent-service").AgentService, import("./core/interfaces/agent-service").AgentService>>;
|
|
9
|
+
export declare function createAppLayer(config?: AppLayerConfig): Layer.Layer<import("./core/interfaces/presentation").PresentationService | import("./core/interfaces/agent-config").AgentConfigService | import("./core/interfaces/calendar").CalendarService | import("./core/interfaces/fs").FileSystemContextService | FileSystem.FileSystem | import("./core/interfaces/gmail").GmailService | import("./core/interfaces/logger").LoggerService | import("./core/interfaces/tool-registry").ToolRegistry | import("./core/interfaces/storage").StorageService | import("./core/interfaces/terminal").TerminalService | import("./core/interfaces/agent-service").AgentService | import("./core/interfaces/llm").LLMService | import("./core/interfaces/chat-service").ChatService, Error | import("./core/types").ConfigurationError | import("./core/types").ConfigurationNotFoundError | import("./core/types").LLMConfigurationError, import("effect/Context").Tag<import("./core/interfaces/agent-config").AgentConfigService, import("./core/interfaces/agent-config").AgentConfigService> | FileSystem.FileSystem | import("effect/Context").Tag<import("./core/interfaces/tool-registry").ToolRegistry, import("./core/interfaces/tool-registry").ToolRegistry> | import("./core/interfaces/terminal").TerminalService | import("effect/Context").Tag<import("./core/interfaces/agent-service").AgentService, import("./core/interfaces/agent-service").AgentService>>;
|
|
10
10
|
export declare function runCliEffect<R, E extends JazzError | Error>(effect: Effect.Effect<void, E, R>, config?: AppLayerConfig): void;
|
|
11
11
|
//# sourceMappingURL=app-layer.d.ts.map
|
package/dist/app-layer.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-layer.d.ts","sourceRoot":"","sources":["../src/app-layer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EAAS,MAAM,EAAe,KAAK,EAAU,MAAM,QAAQ,CAAC;AAQnE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAiBrD,MAAM,WAAW,cAAc;IAI7B,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAK9B,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAK5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACjC;AAkBD,wBAAgB,cAAc,CAAC,MAAM,GAAE,cAAmB,
|
|
1
|
+
{"version":3,"file":"app-layer.d.ts","sourceRoot":"","sources":["../src/app-layer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAE9C,OAAO,EAAS,MAAM,EAAe,KAAK,EAAU,MAAM,QAAQ,CAAC;AAQnE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAiBrD,MAAM,WAAW,cAAc;IAI7B,OAAO,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAK9B,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAK5B,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACjC;AAkBD,wBAAgB,cAAc,CAAC,MAAM,GAAE,cAAmB,q1CA0EzD;AAWD,wBAAgB,YAAY,CAAC,CAAC,EAAE,CAAC,SAAS,SAAS,GAAG,KAAK,EACzD,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EACjC,MAAM,GAAE,cAAmB,GAC1B,IAAI,CA4DN"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli-renderer.d.ts","sourceRoot":"","sources":["../../../src/cli/presentation/cli-renderer.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAIhC,OAAO,KAAK,EAAgB,aAAa,EAA2B,MAAM,yBAAyB,CAAC;AACpG,OAAO,KAAK,EAAE,WAAW,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAO/E,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAiCpD,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,aAAa,EAAE,aAAa,CAAC;IACtC,QAAQ,CAAC,eAAe,EAAE,eAAe,CAAC;IAC1C,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC;IAC9B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,eAAe,CAAC,EAAE,SAAS,GAAG,KAAK,GAAG,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAC;CAC9E;AAKD,eAAO,MAAM,wBAAwB,EAAE,eAGtC,CAAC;AAMF,qBAAa,WAAW;IAkBV,OAAO,CAAC,MAAM;IAjB1B,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAe;IACtC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAc;IACpC,OAAO,CAAC,QAAQ,CAAC,gBAAgB,CAAmB;IACpD,OAAO,CAAC,QAAQ,CAAC,WAAW,CAAkC;IAC9D,OAAO,CAAC,QAAQ,CAAC,IAAI,CAAa;IAClC,OAAO,CAAC,gBAAgB,CAIR;IAGhB,OAAO,CAAC,iBAAiB,CAAkB;IAC3C,OAAO,CAAC,eAAe,CAAc;IACrC,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,cAAc,CAA4C;gBAE9C,MAAM,EAAE,iBAAiB;IA6B7C,OAAO,CAAC,YAAY;IAgBpB,WAAW,CAAC,KAAK,EAAE,WAAW,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,CAAC;IAY3D,OAAO,CAAC,WAAW;IAgFnB,OAAO,CAAC,iBAAiB;IAmBzB,OAAO,CAAC,eAAe;
|
|
1
|
+
{"version":3,"file":"cli-renderer.d.ts","sourceRoot":"","sources":["../../../src/cli/presentation/cli-renderer.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,7 +12,7 @@ export interface AgentRunnerOptions {
|
|
|
12
12
|
readonly agent: Agent;
|
|
13
13
|
readonly userInput: string;
|
|
14
14
|
readonly conversationId?: string;
|
|
15
|
-
readonly sessionId
|
|
15
|
+
readonly sessionId: string;
|
|
16
16
|
readonly maxIterations?: number;
|
|
17
17
|
readonly conversationHistory?: ChatMessage[];
|
|
18
18
|
readonly stream?: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"agent-runner.d.ts","sourceRoot":"","sources":["../../../src/core/agent/agent-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,MAAM,EAA8C,MAAM,QAAQ,CAAC;AAI7F,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAC5F,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACtB,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,OAAO,EAA0B,iBAAiB,EAAmB,MAAM,iBAAiB,CAAC;AAC7F,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,OAAO,EAAE,KAAK,QAAQ,EAAkD,MAAM,gBAAgB,CAAC;AA+B/F,MAAM,WAAW,kBAAkB;IAIjC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IAKtB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAM3B,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAMjC,QAAQ,CAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"agent-runner.d.ts","sourceRoot":"","sources":["../../../src/core/agent/agent-runner.ts"],"names":[],"mappings":"AAAA,OAAO,EAAmB,MAAM,EAA8C,MAAM,QAAQ,CAAC;AAI7F,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AAC5F,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACtB,MAAM,6BAA6B,CAAC;AAErC,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,UAAU,CAAC;AAEtC,OAAO,EAA0B,iBAAiB,EAAmB,MAAM,iBAAiB,CAAC;AAC7F,OAAO,EAAE,KAAK,WAAW,EAAE,MAAM,kBAAkB,CAAC;AAEpD,OAAO,EAAE,KAAK,QAAQ,EAAkD,MAAM,gBAAgB,CAAC;AA+B/F,MAAM,WAAW,kBAAkB;IAIjC,QAAQ,CAAC,KAAK,EAAE,KAAK,CAAC;IAKtB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAM3B,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IAMjC,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAO3B,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAC;IAKhC,QAAQ,CAAC,mBAAmB,CAAC,EAAE,WAAW,EAAE,CAAC;IAO7C,QAAQ,CAAC,MAAM,CAAC,EAAE,OAAO,CAAC;CAC3B;AAYD,MAAM,WAAW,aAAa;IAO5B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IAMzB,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC;IAehC,QAAQ,CAAC,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;IAchC,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAW/C,QAAQ,CAAC,QAAQ,CAAC,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC;CAC/C;AAmJD,qBAAa,WAAW;IAItB,MAAM,CAAC,GAAG,CACR,OAAO,EAAE,kBAAkB,GAC1B,MAAM,CAAC,MAAM,CACd,aAAa,EACb,iBAAiB,GAAG,KAAK,EACvB,UAAU,GACV,YAAY,GACZ,aAAa,GACb,kBAAkB,GAClB,mBAAmB,GACnB,gBAAgB,CACnB;IAkDD,OAAO,CAAC,MAAM,CAAC,gBAAgB;IAwc/B,OAAO,CAAC,MAAM,CAAC,mBAAmB;CAsUnC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tool-executor.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/execution/tool-executor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACxE,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,EAEL,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACvB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACtB,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,QAAQ,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAE7F,OAAO,EAGL,KAAK,qBAAqB,EAC3B,MAAM,+BAA+B,CAAC;AAKvC,qBAAa,YAAY;IAIvB,MAAM,CAAC,WAAW,CAChB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,OAAO,EAAE,oBAAoB,GAC5B,MAAM,CAAC,MAAM,CACd,mBAAmB,EACnB,KAAK,EACL,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,gBAAgB,CACrE;IAUD,MAAM,CAAC,eAAe,CACpB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,oBAAoB,EAC7B,aAAa,EAAE,aAAa,EAC5B,QAAQ,EAAE,iBAAiB,GAAG,IAAI,EAClC,UAAU,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,EACpD,OAAO,EAAE,MAAM,EACf,cAAc,EAAE,MAAM,GACrB,MAAM,CAAC,MAAM,CACd;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EACvE,KAAK,EACL,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,gBAAgB,GAAG,mBAAmB,CAC3F;
|
|
1
|
+
{"version":3,"file":"tool-executor.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/execution/tool-executor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAChC,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AACxE,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,yBAAyB,CAAC;AAC/E,OAAO,EAEL,KAAK,mBAAmB,EACxB,KAAK,iBAAiB,EACvB,MAAM,+BAA+B,CAAC;AACvC,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,gBAAgB,EACtB,MAAM,gCAAgC,CAAC;AACxC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,oBAAoB,CAAC;AACxD,OAAO,KAAK,EAAE,QAAQ,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAE7F,OAAO,EAGL,KAAK,qBAAqB,EAC3B,MAAM,+BAA+B,CAAC;AAKvC,qBAAa,YAAY;IAIvB,MAAM,CAAC,WAAW,CAChB,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,OAAO,EAAE,oBAAoB,GAC5B,MAAM,CAAC,MAAM,CACd,mBAAmB,EACnB,KAAK,EACL,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,gBAAgB,CACrE;IAUD,MAAM,CAAC,eAAe,CACpB,QAAQ,EAAE,QAAQ,EAClB,OAAO,EAAE,oBAAoB,EAC7B,aAAa,EAAE,aAAa,EAC5B,QAAQ,EAAE,iBAAiB,GAAG,IAAI,EAClC,UAAU,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,EACpD,OAAO,EAAE,MAAM,EACf,cAAc,EAAE,MAAM,GACrB,MAAM,CAAC,MAAM,CACd;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EACvE,KAAK,EACL,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,gBAAgB,GAAG,mBAAmB,CAC3F;IAuID,MAAM,CAAC,gBAAgB,CACrB,SAAS,EAAE,SAAS,QAAQ,EAAE,EAC9B,OAAO,EAAE,oBAAoB,EAC7B,aAAa,EAAE,aAAa,EAC5B,QAAQ,EAAE,iBAAiB,GAAG,IAAI,EAClC,UAAU,EAAE,UAAU,CAAC,OAAO,qBAAqB,CAAC,EACpD,OAAO,EAAE,MAAM,EACf,cAAc,EAAE,MAAM,EACtB,SAAS,EAAE,MAAM,GAChB,MAAM,CAAC,MAAM,CACd,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,OAAO,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC,EAC9E,KAAK,EACL,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,gBAAgB,GAAG,mBAAmB,CAC3F;CAyDF"}
|
|
@@ -15,7 +15,6 @@ export declare function createEditFileTool(): Tool<FileSystem.FileSystem | FileS
|
|
|
15
15
|
export declare function createExecuteEditFileTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
16
16
|
export declare function createGrepTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
17
17
|
export declare function createFindTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
18
|
-
export declare function createFindDirTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
19
18
|
export declare function createMkdirTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
20
19
|
export declare function createExecuteMkdirTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
21
20
|
export declare function createStatTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fs-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/fs-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAI9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AAkD3D,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,
|
|
1
|
+
{"version":3,"file":"fs-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/fs-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAI9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AAkD3D,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAoQ3F;AAGD,wBAAgB,aAAa,IAAI,IAAI,CAAC,wBAAwB,CAAC,CAoB9D;AAGD,wBAAgB,YAAY,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAqJrF;AAGD,wBAAgB,YAAY,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAwDrF;AAGD,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAmH3F;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAyH1F;AAGD,wBAAgB,cAAc,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAsGvF;AAGD,wBAAgB,cAAc,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA2GvF;AAKD,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAkD5F;AAED,wBAAgB,0BAA0B,IAAI,IAAI,CAChD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA0DA;AAiCD,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA0I3F;AAED,wBAAgB,yBAAyB,IAAI,IAAI,CAC/C,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CAiQA;AAGD,wBAAgB,cAAc,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAkQvF;AAGD,wBAAgB,cAAc,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAoNvF;AAGD,wBAAgB,eAAe,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA0DxF;AAED,wBAAgB,sBAAsB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAyD/F;AAGD,wBAAgB,cAAc,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAwEvF;AAGD,wBAAgB,YAAY,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA+CrF;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA2E5F"}
|
|
@@ -17,4 +17,10 @@ export declare function createGitCheckoutTool(): Tool<FileSystem.FileSystem | Fi
|
|
|
17
17
|
export declare function createExecuteGitPushTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
18
18
|
export declare function createExecuteGitPullTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
19
19
|
export declare function createExecuteGitCheckoutTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
20
|
+
export declare function createGitTagTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
21
|
+
export declare function createExecuteGitTagTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
22
|
+
export declare function createGitBlameTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
23
|
+
export declare function createGitMergeTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
24
|
+
export declare function createExecuteGitMergeTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
25
|
+
export declare function createGitReflogTool(): Tool<FileSystem.FileSystem | FileSystemContextService>;
|
|
20
26
|
//# sourceMappingURL=git-tools.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"git-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/git-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAG9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AA0H3D,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAgH5F;AAED,wBAAgB,gBAAgB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAgIzF;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAuH1F;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAqH5F;AAID,wBAAgB,gBAAgB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA0EzF;AAED,wBAAgB,uBAAuB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAsGhG;AAED,wBAAgB,eAAe,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAmFxF;AAED,wBAAgB,sBAAsB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA+G/F;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAyE5F;AAED,wBAAgB,0BAA0B,IAAI,IAAI,CAChD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA6GA;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA4E1F;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA4E1F;AAED,wBAAgB,qBAAqB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA2E9F;AAED,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA6GjG;AAED,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA6GjG;AAED,wBAAgB,4BAA4B,IAAI,IAAI,CAClD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA0GA"}
|
|
1
|
+
{"version":3,"file":"git-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/git-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAG9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AA0H3D,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAgH5F;AAED,wBAAgB,gBAAgB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAgIzF;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAuH1F;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAqH5F;AAID,wBAAgB,gBAAgB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA0EzF;AAED,wBAAgB,uBAAuB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAsGhG;AAED,wBAAgB,eAAe,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAmFxF;AAED,wBAAgB,sBAAsB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA+G/F;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAyE5F;AAED,wBAAgB,0BAA0B,IAAI,IAAI,CAChD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA6GA;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA4E1F;AAED,wBAAgB,iBAAiB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA4E1F;AAED,wBAAgB,qBAAqB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA2E9F;AAED,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA6GjG;AAED,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA6GjG;AAED,wBAAgB,4BAA4B,IAAI,IAAI,CAClD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA0GA;AAED,wBAAgB,gBAAgB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAiLzF;AAED,wBAAgB,uBAAuB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CA6NhG;AAED,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAkK3F;AAED,wBAAgB,kBAAkB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAwG3F;AAED,wBAAgB,yBAAyB,IAAI,IAAI,CAC/C,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA6MA;AAED,wBAAgB,mBAAmB,IAAI,IAAI,CAAC,UAAU,CAAC,UAAU,GAAG,wBAAwB,CAAC,CAoK5F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"register-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/register-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"register-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/register-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAEnE,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAwEhD,wBAAgB,gBAAgB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAU3E;AAED,eAAO,MAAM,cAAc,EAAE,YAAoD,CAAC;AAClF,eAAO,MAAM,iBAAiB,EAAE,YAA0D,CAAC;AAC3F,eAAO,MAAM,aAAa,EAAE,YAAkD,CAAC;AAC/E,eAAO,MAAM,wBAAwB,EAAE,YAGtC,CAAC;AACF,eAAO,MAAM,uBAAuB,EAAE,YAGrC,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,YAAgD,CAAC;AAC5E,eAAO,MAAM,mBAAmB,EAAE,YAAsD,CAAC;AAKzF,eAAO,MAAM,cAAc,EAAE,SAAS,YAAY,EAQxC,CAAC;AAKX,wBAAgB,sBAAsB,IAAI;IACxC,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,eAAe,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC,CAaA;AAGD,wBAAgB,kBAAkB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAqD7E;AAGD,wBAAgB,qBAAqB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAUhF;AAGD,wBAAgB,iBAAiB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAS5E;AAGD,wBAAgB,iBAAiB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CA6C5E;AAGD,wBAAgB,kBAAkB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAW7E;AAGD,wBAAgB,gBAAgB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAyD3E;AAGD,wBAAgB,mBAAmB,IAAI,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,YAAY,CAAC,CAS9E;AAGD,wBAAgB,2BAA2B,IAAI,KAAK,CAAC,KAAK,CAAC,KAAK,EAAE,KAAK,EAAE,YAAY,CAAC,CAErF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shell-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/shell-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAI9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AAiF3D,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,wBAAwB,CAAC,CA8FzE;AAWD,wBAAgB,gCAAgC,IAAI,IAAI,CACtD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,
|
|
1
|
+
{"version":3,"file":"shell-tools.d.ts","sourceRoot":"","sources":["../../../../src/core/agent/tools/shell-tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAI9C,OAAO,EAAE,KAAK,wBAAwB,EAA+B,MAAM,qBAAqB,CAAC;AACjG,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,gCAAgC,CAAC;AAiF3D,wBAAgB,wBAAwB,IAAI,IAAI,CAAC,wBAAwB,CAAC,CA8FzE;AAWD,wBAAgB,gCAAgC,IAAI,IAAI,CACtD,UAAU,CAAC,UAAU,GAAG,wBAAwB,CACjD,CA6MA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"llm-error.d.ts","sourceRoot":"","sources":["../../../src/core/utils/llm-error.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAIL,KAAK,QAAQ,EACd,MAAM,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"llm-error.d.ts","sourceRoot":"","sources":["../../../src/core/utils/llm-error.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAIL,KAAK,QAAQ,EACd,MAAM,iBAAiB,CAAC;AAgMzB,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,OAAO,EAAE,YAAY,EAAE,YAAY,GAAG,QAAQ,CAkDtF"}
|