jazz-ai 0.4.11 → 0.5.1
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 +130 -218
- package/dist/app-layer.d.ts +11 -0
- package/dist/app-layer.d.ts.map +1 -0
- package/dist/cli/cli-app.d.ts +4 -0
- package/dist/cli/cli-app.d.ts.map +1 -0
- package/dist/cli/commands/{task-agent.d.ts → agent-management.d.ts} +5 -6
- package/dist/cli/commands/agent-management.d.ts.map +1 -0
- package/dist/cli/commands/auth.d.ts +8 -7
- package/dist/cli/commands/auth.d.ts.map +1 -1
- package/dist/cli/commands/chat-agent.d.ts +2 -11
- package/dist/cli/commands/chat-agent.d.ts.map +1 -1
- package/dist/cli/commands/config.d.ts +5 -5
- package/dist/cli/commands/config.d.ts.map +1 -1
- package/dist/cli/commands/create-agent.d.ts +9 -0
- package/dist/cli/commands/create-agent.d.ts.map +1 -0
- package/dist/cli/commands/edit-agent.d.ts +6 -6
- package/dist/cli/commands/edit-agent.d.ts.map +1 -1
- package/dist/cli/commands/update.d.ts +4 -4
- package/dist/cli/commands/update.d.ts.map +1 -1
- package/dist/cli/presentation/cli-renderer.d.ts +71 -0
- package/dist/cli/presentation/cli-renderer.d.ts.map +1 -0
- package/dist/{core/utils → cli/presentation}/output-theme.d.ts +1 -1
- package/dist/cli/presentation/output-theme.d.ts.map +1 -0
- package/dist/cli/presentation/output-writer.d.ts.map +1 -0
- package/dist/cli/presentation/presentation-service.d.ts +4 -0
- package/dist/cli/presentation/presentation-service.d.ts.map +1 -0
- package/dist/{core/utils → cli/presentation}/thinking-renderer.d.ts +1 -1
- package/dist/cli/presentation/thinking-renderer.d.ts.map +1 -0
- package/dist/core/agent/agent-prompt.d.ts +1 -1
- package/dist/core/agent/agent-prompt.d.ts.map +1 -1
- package/dist/core/agent/agent-runner.d.ts +9 -8
- package/dist/core/agent/agent-runner.d.ts.map +1 -1
- package/dist/core/agent/agent-service.d.ts +5 -24
- package/dist/core/agent/agent-service.d.ts.map +1 -1
- package/dist/core/agent/context-window-manager.d.ts +4 -4
- package/dist/core/agent/context-window-manager.d.ts.map +1 -1
- package/dist/core/agent/execution/tool-executor.d.ts +24 -0
- package/dist/core/agent/execution/tool-executor.d.ts.map +1 -0
- package/dist/core/agent/prompts/coder/v1.d.ts +1 -1
- package/dist/core/agent/prompts/coder/v1.d.ts.map +1 -1
- package/dist/core/agent/prompts/default/v2.d.ts +1 -1
- package/dist/core/agent/prompts/default/v2.d.ts.map +1 -1
- package/dist/core/agent/prompts/gmail/v2.d.ts +1 -1
- package/dist/core/agent/prompts/gmail/v2.d.ts.map +1 -1
- package/dist/core/agent/prompts/shared.d.ts +5 -3
- package/dist/core/agent/prompts/shared.d.ts.map +1 -1
- package/dist/core/agent/tools/base-tool.d.ts +2 -5
- package/dist/core/agent/tools/base-tool.d.ts.map +1 -1
- package/dist/core/agent/tools/calendar-tools.d.ts +17 -0
- package/dist/core/agent/tools/calendar-tools.d.ts.map +1 -0
- package/dist/core/agent/tools/context-utils.d.ts +1 -1
- package/dist/core/agent/tools/context-utils.d.ts.map +1 -1
- package/dist/core/agent/tools/fs-tools.d.ts +8 -5
- package/dist/core/agent/tools/fs-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/git-tools.d.ts +19 -63
- package/dist/core/agent/tools/git-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/gmail-tools.d.ts +2 -2
- package/dist/core/agent/tools/gmail-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/http-tools.d.ts +1 -1
- package/dist/core/agent/tools/http-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/register-tools.d.ts +4 -1
- package/dist/core/agent/tools/register-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/shell-tools.d.ts +4 -3
- package/dist/core/agent/tools/shell-tools.d.ts.map +1 -1
- package/dist/core/agent/tools/tool-registry.d.ts +5 -44
- package/dist/core/agent/tools/tool-registry.d.ts.map +1 -1
- package/dist/core/agent/tools/web-search-tools.d.ts +3 -3
- package/dist/core/agent/tools/web-search-tools.d.ts.map +1 -1
- package/dist/core/agent/tracking/agent-run-tracker.d.ts +2 -1
- package/dist/core/agent/tracking/agent-run-tracker.d.ts.map +1 -1
- package/dist/core/constants/agent.d.ts.map +1 -0
- package/dist/core/constants/models.d.ts +147 -0
- package/dist/core/constants/models.d.ts.map +1 -0
- package/dist/core/interfaces/agent-config.d.ts +12 -0
- package/dist/core/interfaces/agent-config.d.ts.map +1 -0
- package/dist/core/interfaces/agent-service.d.ts +13 -0
- package/dist/core/interfaces/agent-service.d.ts.map +1 -0
- package/dist/core/interfaces/calendar.d.ts +17 -0
- package/dist/core/interfaces/calendar.d.ts.map +1 -0
- package/dist/core/interfaces/chat-service.d.ts +18 -0
- package/dist/core/interfaces/chat-service.d.ts.map +1 -0
- package/dist/core/interfaces/cli-options.d.ts +8 -0
- package/dist/core/interfaces/cli-options.d.ts.map +1 -0
- package/dist/core/interfaces/fs.d.ts +32 -0
- package/dist/core/interfaces/fs.d.ts.map +1 -0
- package/dist/core/interfaces/gmail.d.ts +49 -0
- package/dist/core/interfaces/gmail.d.ts.map +1 -0
- package/dist/core/interfaces/llm.d.ts +16 -0
- package/dist/core/interfaces/llm.d.ts.map +1 -0
- package/dist/core/interfaces/logger.d.ts +12 -0
- package/dist/core/interfaces/logger.d.ts.map +1 -0
- package/dist/core/interfaces/presentation.d.ts +33 -0
- package/dist/core/interfaces/presentation.d.ts.map +1 -0
- package/dist/core/interfaces/storage.d.ts +11 -0
- package/dist/core/interfaces/storage.d.ts.map +1 -0
- package/dist/core/interfaces/terminal.d.ts +42 -0
- package/dist/core/interfaces/terminal.d.ts.map +1 -0
- package/dist/core/interfaces/tool-registry.d.ts +33 -0
- package/dist/core/interfaces/tool-registry.d.ts.map +1 -0
- package/dist/core/types/agent.d.ts +18 -0
- package/dist/core/types/agent.d.ts.map +1 -0
- package/dist/core/types/calendar.d.ts +95 -0
- package/dist/core/types/calendar.d.ts.map +1 -0
- package/dist/{services/llm → core/types}/chat.d.ts +1 -1
- package/dist/core/types/chat.d.ts.map +1 -0
- package/dist/core/types/config.d.ts +52 -0
- package/dist/core/types/config.d.ts.map +1 -0
- package/dist/core/types/errors.d.ts +21 -2
- package/dist/core/types/errors.d.ts.map +1 -1
- package/dist/core/types/gmail.d.ts +34 -0
- package/dist/core/types/gmail.d.ts.map +1 -0
- package/dist/core/types/index.d.ts +9 -104
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/core/types/llm.d.ts +15 -0
- package/dist/core/types/llm.d.ts.map +1 -0
- package/dist/{services/llm/messages.d.ts → core/types/message.d.ts} +1 -1
- package/dist/core/types/message.d.ts.map +1 -0
- package/dist/core/types/output.d.ts +43 -0
- package/dist/core/types/output.d.ts.map +1 -0
- package/dist/{services/llm/streaming-types.d.ts → core/types/streaming.d.ts} +11 -7
- package/dist/core/types/streaming.d.ts.map +1 -0
- package/dist/{services/llm → core/types}/tools.d.ts +14 -0
- package/dist/core/types/tools.d.ts.map +1 -0
- package/dist/core/utils/env-utils.d.ts.map +1 -0
- package/dist/core/utils/error-handler.d.ts +1 -1
- package/dist/core/utils/error-handler.d.ts.map +1 -1
- package/dist/core/utils/http-utils.d.ts +2 -0
- package/dist/core/utils/http-utils.d.ts.map +1 -0
- package/dist/core/utils/llm-error.d.ts +4 -0
- package/dist/core/utils/llm-error.d.ts.map +1 -0
- package/dist/core/utils/logging-helpers.d.ts +10 -0
- package/dist/core/utils/logging-helpers.d.ts.map +1 -0
- package/dist/core/utils/promise.d.ts +6 -0
- package/dist/core/utils/promise.d.ts.map +1 -0
- package/dist/core/utils/storage-utils.d.ts +3 -0
- package/dist/core/utils/storage-utils.d.ts.map +1 -0
- package/dist/{services/llm → core/utils}/stream-detector.d.ts +1 -1
- package/dist/core/utils/stream-detector.d.ts.map +1 -0
- package/dist/core/utils/tool-formatter.d.ts.map +1 -1
- package/dist/main.js +12850 -10372
- package/dist/services/agent-service.d.ts +17 -0
- package/dist/services/agent-service.d.ts.map +1 -0
- package/dist/services/calendar.d.ts +47 -0
- package/dist/services/calendar.d.ts.map +1 -0
- package/dist/services/chat-service.d.ts +19 -0
- package/dist/services/chat-service.d.ts.map +1 -0
- package/dist/services/config.d.ts +6 -14
- package/dist/services/config.d.ts.map +1 -1
- package/dist/services/fs.d.ts +2 -30
- package/dist/services/fs.d.ts.map +1 -1
- package/dist/services/gmail.d.ts +20 -104
- package/dist/services/gmail.d.ts.map +1 -1
- package/dist/services/llm/ai-sdk-service.d.ts +4 -4
- package/dist/services/llm/ai-sdk-service.d.ts.map +1 -1
- package/dist/services/llm/model-fetcher.d.ts +2 -1
- package/dist/services/llm/model-fetcher.d.ts.map +1 -1
- package/dist/services/llm/models.d.ts +3 -171
- package/dist/services/llm/models.d.ts.map +1 -1
- package/dist/services/llm/stream-processor.d.ts +4 -3
- package/dist/services/llm/stream-processor.d.ts.map +1 -1
- package/dist/services/logger.d.ts +6 -18
- package/dist/services/logger.d.ts.map +1 -1
- package/dist/services/storage/file.d.ts +1 -1
- package/dist/services/storage/file.d.ts.map +1 -1
- package/dist/services/storage/inMemory.d.ts +1 -1
- package/dist/services/storage/inMemory.d.ts.map +1 -1
- package/dist/services/storage/service.d.ts +2 -8
- package/dist/services/storage/service.d.ts.map +1 -1
- package/dist/services/terminal.d.ts +29 -17
- package/dist/services/terminal.d.ts.map +1 -1
- package/package.json +26 -24
- package/dist/cli/commands/task-agent.d.ts.map +0 -1
- package/dist/constants/agent.d.ts.map +0 -1
- package/dist/core/agent/tools/env-utils.d.ts.map +0 -1
- package/dist/core/utils/markdown-renderer.d.ts +0 -22
- package/dist/core/utils/markdown-renderer.d.ts.map +0 -1
- package/dist/core/utils/output-renderer.d.ts +0 -44
- package/dist/core/utils/output-renderer.d.ts.map +0 -1
- package/dist/core/utils/output-theme.d.ts.map +0 -1
- package/dist/core/utils/output-writer.d.ts.map +0 -1
- package/dist/core/utils/thinking-renderer.d.ts.map +0 -1
- package/dist/services/llm/chat.d.ts.map +0 -1
- package/dist/services/llm/interfaces.d.ts +0 -22
- package/dist/services/llm/interfaces.d.ts.map +0 -1
- package/dist/services/llm/messages.d.ts.map +0 -1
- package/dist/services/llm/stream-detector.d.ts.map +0 -1
- package/dist/services/llm/streaming-types.d.ts.map +0 -1
- package/dist/services/llm/tools.d.ts.map +0 -1
- package/dist/services/storage/utils.d.ts +0 -3
- package/dist/services/storage/utils.d.ts.map +0 -1
- /package/dist/{core/utils → cli/presentation}/output-writer.d.ts +0 -0
- /package/dist/{constants → core/constants}/agent.d.ts +0 -0
- /package/dist/core/{agent/tools → utils}/env-utils.d.ts +0 -0
package/README.md
CHANGED
|
@@ -1,311 +1,223 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[](https://www.typescriptlang.org/)
|
|
4
|
-
[](https://opensource.org/licenses/MIT)
|
|
5
|
-
[](https://discord.gg/yBDbS2NZju)
|
|
6
|
-
[](https://www.npmjs.com/package/jazz-ai)
|
|
7
|
-
|
|
8
|
-
> **Your AI agent that actually _does_ things**
|
|
1
|
+
<div align="center">
|
|
9
2
|
|
|
10
|
-
Jazz
|
|
11
|
-
Instead of just chatting, your agents can read emails, manage git repositories, execute commands,
|
|
12
|
-
search the web, and orchestrate complex workflows—all through natural conversation.
|
|
3
|
+
# Jazz 🎷
|
|
13
4
|
|
|
14
|
-
|
|
5
|
+
[](https://www.typescriptlang.org/) [](https://opensource.org/licenses/MIT) [](https://www.npmjs.com/package/jazz-ai)
|
|
15
6
|
|
|
16
|
-
|
|
17
|
-
yourself. Jazz agents go beyond conversation—they **actually execute tasks** in the real world.
|
|
7
|
+
### Your AI agent that actually does things.
|
|
18
8
|
|
|
19
|
-
|
|
9
|
+
</div>
|
|
20
10
|
|
|
21
|
-
|
|
22
|
-
yourself
|
|
23
|
-
- **Jazz agents**: "I'll check your email" → Agent reads your inbox, summarizes messages, and takes
|
|
24
|
-
action
|
|
11
|
+
---
|
|
25
12
|
|
|
26
|
-
|
|
27
|
-
commands, search the web, and orchestrate complex workflows—all through natural conversation, with
|
|
28
|
-
your approval for sensitive operations.
|
|
13
|
+
## What Jazz Gives You
|
|
29
14
|
|
|
30
|
-
|
|
15
|
+
Turn plain language into **safe, auditable actions**. Jazz agents read email, run git commands, edit files, call APIs, research the web, and orchestrate multi-step workflows.
|
|
31
16
|
|
|
32
|
-
|
|
33
|
-
- 🔧 **Git Operations** - Check status, commit changes, push code, manage branches
|
|
34
|
-
- 🌐 **Web Research** - Search the web and get current information via Linkup
|
|
35
|
-
- 💻 **Shell Commands** - Execute system commands with security safeguards
|
|
36
|
-
- 📁 **File Operations** - Read, write, search, and manage files intelligently
|
|
37
|
-
- 🔗 **HTTP Requests** - Call APIs and integrate with external services
|
|
17
|
+
**In short:** Jazz can do literally everything an agent should do for real work and save you the manual steps.
|
|
38
18
|
|
|
39
|
-
|
|
19
|
+
For example:
|
|
40
20
|
|
|
41
|
-
- **
|
|
42
|
-
- **
|
|
43
|
-
- **
|
|
44
|
-
- **
|
|
21
|
+
- **Email Management** — Summarize and triage your inbox, draft replies, and label messages
|
|
22
|
+
- **Git Operations** — Inspect repos, propose and create commits, push changes when you approve
|
|
23
|
+
- **Web Research** — Search the web for up-to-date answers and synthesize sources into a brief
|
|
24
|
+
- **Shell & Files** — Run shell commands, read and edit files
|
|
25
|
+
- **API Integration** — Call remote APIs (HTTP) and combine results into reports or automation flows
|
|
26
|
+
- **Much more**
|
|
45
27
|
|
|
46
|
-
|
|
28
|
+
---
|
|
47
29
|
|
|
48
|
-
|
|
30
|
+
## 🚀 Quick Start — Get Productive in Minutes
|
|
49
31
|
|
|
50
|
-
###
|
|
32
|
+
### 1. Install the CLI
|
|
51
33
|
|
|
52
34
|
```bash
|
|
53
|
-
#
|
|
35
|
+
# npm
|
|
54
36
|
npm install -g jazz-ai
|
|
55
37
|
|
|
56
|
-
#
|
|
38
|
+
# bun
|
|
57
39
|
bun add -g jazz-ai
|
|
58
40
|
|
|
59
|
-
#
|
|
41
|
+
# pnpm
|
|
60
42
|
pnpm add -g jazz-ai
|
|
61
43
|
|
|
62
|
-
#
|
|
44
|
+
# yarn
|
|
63
45
|
yarn global add jazz-ai
|
|
64
46
|
```
|
|
65
47
|
|
|
66
|
-
###
|
|
48
|
+
### 2. Create Your First Agent
|
|
67
49
|
|
|
68
|
-
|
|
50
|
+
No prior config required — the wizard will guide you:
|
|
69
51
|
|
|
70
52
|
```bash
|
|
71
|
-
|
|
53
|
+
# Run the interactive wizard — if an API key is missing the wizard will ask for it
|
|
54
|
+
jazz agent create
|
|
72
55
|
```
|
|
73
56
|
|
|
74
|
-
|
|
57
|
+
The wizard walks you through:
|
|
75
58
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
59
|
+
- Name and description
|
|
60
|
+
- Provider/model selection
|
|
61
|
+
- Tool selection
|
|
79
62
|
|
|
80
|
-
###
|
|
81
|
-
|
|
82
|
-
Now let's create an agent! The interactive wizard will guide you through the process:
|
|
63
|
+
### 3. Chat With Your Agent
|
|
83
64
|
|
|
84
65
|
```bash
|
|
85
|
-
jazz agent
|
|
66
|
+
jazz agent list
|
|
67
|
+
jazz agent chat <agent-name>
|
|
86
68
|
```
|
|
87
69
|
|
|
88
|
-
|
|
89
|
-
$ jazz agent create
|
|
90
|
-
? What would you like to name your agent? my-assistant
|
|
91
|
-
? What should this agent do? Help me with daily tasks and file management
|
|
92
|
-
? Select LLM provider: OpenAI
|
|
93
|
-
? Select model: gpt-4o
|
|
94
|
-
? Select tools: (Use arrow keys and space to select)
|
|
95
|
-
◉ File System
|
|
96
|
-
◯ Git
|
|
97
|
-
◉ Shell
|
|
98
|
-
◯ Gmail
|
|
99
|
-
◯ Web Search
|
|
100
|
-
◯ HTTP
|
|
101
|
-
```
|
|
70
|
+
Agents stream responses, call tools, and ask for approval for any actions that change state.
|
|
102
71
|
|
|
103
|
-
|
|
72
|
+
---
|
|
104
73
|
|
|
105
|
-
|
|
74
|
+
## 📚 Usage Highlights
|
|
106
75
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
jazz agent
|
|
110
|
-
|
|
76
|
+
| Command | Description |
|
|
77
|
+
| ------------------------ | ---------------------------- |
|
|
78
|
+
| `jazz agent create` | Create a new agent |
|
|
79
|
+
| `jazz agent chat <name>` | Start chatting with an agent |
|
|
80
|
+
| `jazz agent list` | List all your agents |
|
|
81
|
+
| `jazz agent edit <id>` | Edit an existing agent |
|
|
82
|
+
| `jazz config show` | View your configuration |
|
|
83
|
+
| `jazz auth gmail login` | Authenticate with Gmail |
|
|
111
84
|
|
|
112
|
-
|
|
85
|
+
---
|
|
113
86
|
|
|
114
|
-
|
|
87
|
+
## 🎯 What You Can Expect
|
|
115
88
|
|
|
116
|
-
###
|
|
89
|
+
### Multi-Provider LLM Support
|
|
117
90
|
|
|
118
|
-
|
|
91
|
+
OpenAI • Anthropic • Google • Ollama • Openrouter • And more...
|
|
119
92
|
|
|
120
|
-
###
|
|
93
|
+
### Safety & Auditability
|
|
121
94
|
|
|
122
|
-
|
|
95
|
+
Explicit approval workflow • Typed, auditable tools • Audit logs for transparency
|
|
123
96
|
|
|
124
|
-
|
|
125
|
-
2. `./jazz.config.json` (current directory - mostly used in dev)
|
|
126
|
-
3. `~/.jazz/config.json` (home directory - **default**)
|
|
97
|
+
### Rich Developer Experience
|
|
127
98
|
|
|
128
|
-
|
|
99
|
+
Streaming responses • Rich CLI rendering • Easy testing & mocking through Effect Layers
|
|
129
100
|
|
|
130
|
-
|
|
101
|
+
### Powerful Tools
|
|
131
102
|
|
|
132
|
-
|
|
133
|
-
{
|
|
134
|
-
"llm": {
|
|
135
|
-
"openai": {
|
|
136
|
-
"api_key": "sk-..."
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
```
|
|
103
|
+
Filesystem operations • Git integration • Gmail access • HTTP requests • Shell commands • Web search
|
|
141
104
|
|
|
142
|
-
|
|
105
|
+
---
|
|
143
106
|
|
|
144
|
-
|
|
107
|
+
## 💡 Real-World Examples
|
|
145
108
|
|
|
146
|
-
|
|
109
|
+
<details>
|
|
110
|
+
<summary><strong>Git Assistant</strong></summary>
|
|
147
111
|
|
|
148
|
-
|
|
112
|
+
Ask: _"what changed?"_
|
|
149
113
|
|
|
150
|
-
|
|
114
|
+
**Jazz will:**
|
|
151
115
|
|
|
152
|
-
|
|
116
|
+
1. Run `git status`
|
|
117
|
+
2. Summarize diffs
|
|
118
|
+
3. Suggest commit messages
|
|
119
|
+
4. Commit when you say "yes"
|
|
153
120
|
|
|
154
|
-
|
|
155
|
-
$ jazz agent chat git-helper
|
|
121
|
+
</details>
|
|
156
122
|
|
|
157
|
-
|
|
158
|
-
|
|
123
|
+
<details>
|
|
124
|
+
<summary><strong>Email Triage</strong></summary>
|
|
159
125
|
|
|
160
|
-
|
|
161
|
-
Agent: [Analyzes diff, suggests commit message]
|
|
162
|
-
About to commit with: "feat: add user authentication flow"
|
|
163
|
-
You: yes
|
|
164
|
-
Agent: ✓ Committed! Hash: abc123f
|
|
165
|
-
```
|
|
126
|
+
Ask: _"summarize unread messages from yesterday"_
|
|
166
127
|
|
|
167
|
-
|
|
128
|
+
**Jazz will:**
|
|
168
129
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
You: Search for the latest TypeScript 5.5 features and summarize them
|
|
173
|
-
Agent: [Searches web, analyzes results]
|
|
174
|
-
TypeScript 5.5 introduces:
|
|
175
|
-
- Inferred type predicates
|
|
176
|
-
- Control flow narrowing improvements
|
|
177
|
-
- [detailed summary with sources]
|
|
178
|
-
```
|
|
179
|
-
|
|
180
|
-
**Want more examples?** Check out our comprehensive [Examples & Use Cases](docs/examples.md) guide
|
|
181
|
-
featuring:
|
|
130
|
+
1. Read your unread messages
|
|
131
|
+
2. Provide summaries
|
|
132
|
+
3. Offer actions (draft reply, archive, label)
|
|
182
133
|
|
|
183
|
-
|
|
184
|
-
- 🔧 Git history cleanup and branch management
|
|
185
|
-
- 🚀 Automated project setup and cloning
|
|
186
|
-
- 🔍 Code analysis and refactoring
|
|
187
|
-
- 🔒 Security audits and dependency updates
|
|
188
|
-
- 📊 Repository analytics and reports
|
|
189
|
-
- 🌐 Web research and documentation generation
|
|
190
|
-
- 🤖 Advanced multi-step workflows
|
|
134
|
+
</details>
|
|
191
135
|
|
|
192
|
-
|
|
136
|
+
<details>
|
|
137
|
+
<summary><strong>Research & Report</strong></summary>
|
|
193
138
|
|
|
194
|
-
|
|
139
|
+
Ask: _"collect latest guides on TypeScript 5.5 and summarize sources"_
|
|
195
140
|
|
|
196
|
-
|
|
197
|
-
jazz agent create # Create new agent (interactive)
|
|
198
|
-
jazz agent list # List all agents
|
|
199
|
-
jazz agent chat <id|name> # Start conversation
|
|
200
|
-
jazz agent edit <id> # Edit agent configuration
|
|
201
|
-
jazz agent get <id> # View agent details
|
|
202
|
-
jazz agent delete <id> # Remove agent
|
|
203
|
-
```
|
|
141
|
+
**Jazz will:**
|
|
204
142
|
|
|
205
|
-
|
|
143
|
+
1. Search the web
|
|
144
|
+
2. Aggregate information
|
|
145
|
+
3. Output a concise report with links
|
|
206
146
|
|
|
207
|
-
|
|
208
|
-
jazz config set <key>. # Set a configuration value
|
|
209
|
-
jazz config get <key> # Get a configuration value
|
|
210
|
-
jazz config list # View all configuration
|
|
211
|
-
```
|
|
147
|
+
</details>
|
|
212
148
|
|
|
213
|
-
|
|
149
|
+
<details>
|
|
150
|
+
<summary><strong>Automated Project Onboarding</strong></summary>
|
|
214
151
|
|
|
215
|
-
|
|
216
|
-
jazz config set llm.openai.api_key sk-...
|
|
217
|
-
jazz config set google.clientId your-client-id
|
|
218
|
-
jazz config get llm.openai.api_key
|
|
219
|
-
```
|
|
152
|
+
Ask: _"Set up the project from github.com/user/awesome-app for local development"_
|
|
220
153
|
|
|
221
|
-
|
|
154
|
+
**Jazz will:**
|
|
222
155
|
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
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
|
|
228
164
|
|
|
229
|
-
|
|
165
|
+
</details>
|
|
230
166
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
jazz update --check # Check for updates only
|
|
234
|
-
jazz --version # Show current version
|
|
235
|
-
```
|
|
167
|
+
<details>
|
|
168
|
+
<summary><strong>Dependency Security Audit</strong></summary>
|
|
236
169
|
|
|
237
|
-
|
|
170
|
+
Ask: _"Audit my dependencies for vulnerabilities and fix them"_
|
|
238
171
|
|
|
239
|
-
|
|
240
|
-
--verbose, -v # Detailed logging
|
|
241
|
-
--debug # Debug mode
|
|
242
|
-
--config <path> # Custom config file
|
|
243
|
-
```
|
|
172
|
+
**Jazz will:**
|
|
244
173
|
|
|
245
|
-
|
|
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
|
|
246
181
|
|
|
247
|
-
|
|
182
|
+
</details>
|
|
248
183
|
|
|
249
|
-
|
|
250
|
-
| --------------- | -------- | ---------------------------------------------------------------------------------------- |
|
|
251
|
-
| **Gmail** | 16 tools | List, search, read, send, label management, batch operations, trash/delete with approval |
|
|
252
|
-
| **Git** | 9 tools | Status, log, diff, branch, add, commit, push, pull, checkout with approval |
|
|
253
|
-
| **File System** | 15 tools | Navigate, read, write, search, grep, find, stat, mkdir, rm with approval |
|
|
254
|
-
| **Shell** | 2 tools | Execute commands with security validation and approval |
|
|
255
|
-
| **Web** | 1 tool | Search via Linkup with deep/standard modes |
|
|
256
|
-
| **HTTP** | 1 tool | Make HTTP requests to APIs |
|
|
184
|
+
---
|
|
257
185
|
|
|
258
|
-
## Documentation
|
|
186
|
+
## 📖 Documentation & Community
|
|
259
187
|
|
|
260
|
-
|
|
261
|
-
- **[Getting Started](docs/getting-started.md)** - Installation, setup, and first agent
|
|
262
|
-
- **[Examples & Use Cases](docs/examples.md)** - Real-world workflows and inspiring examples
|
|
263
|
-
- **[Tools Reference](docs/tools-reference.md)** - Complete guide to all 44 tools
|
|
264
|
-
- **[CLI Reference](docs/cli-reference.md)** - Command-line interface documentation
|
|
265
|
-
- **[Integrations](docs/integrations.md)** - Set up Gmail, Linkup, and LLM providers
|
|
266
|
-
- **[Security Guide](docs/security.md)** - Security model and best practices
|
|
267
|
-
- **[Explorations](docs/exploration/README.md)** - Advanced patterns and future features
|
|
188
|
+
**Documentation:**
|
|
268
189
|
|
|
269
|
-
|
|
190
|
+
- **Full Documentation** — [`docs/README.md`](docs/README.md)
|
|
191
|
+
- **Examples** — [`examples/`](examples/)
|
|
192
|
+
- **Tools Reference** — [`docs/tools-reference.md`](docs/tools-reference.md)
|
|
193
|
+
- **Exploration** — [`exploration/`](exploration/) for future features and ideas that require research
|
|
270
194
|
|
|
271
|
-
|
|
195
|
+
**Community:**
|
|
272
196
|
|
|
273
|
-
|
|
197
|
+
- **Discord Community** — [Join us on Discord](https://discord.gg/yBDbS2NZju)
|
|
198
|
+
- **GitHub Discussions** — [Discuss ideas](https://github.com/lvndry/jazz/discussions)
|
|
199
|
+
- **Issue Tracker** — [File issues](https://github.com/lvndry/jazz/issues)
|
|
274
200
|
|
|
275
|
-
|
|
276
|
-
- ✨ **Add Features** - See [TODO.md](./TODO.md) for planned features
|
|
277
|
-
- 📖 **Improve Docs** - Help make Jazz easier to use
|
|
278
|
-
- 🧪 **Write Tests** - Increase test coverage
|
|
279
|
-
- 💡 **Share Ideas** - Join [Discussions](https://github.com/lvndry/jazz/discussions) to share ideas
|
|
280
|
-
and move conversations forward
|
|
281
|
-
- 🔬 **Explore Advanced Topics** - Check out the [exploration folder](docs/exploration/README.md)
|
|
282
|
-
for future features and research
|
|
201
|
+
---
|
|
283
202
|
|
|
284
|
-
|
|
203
|
+
## 🤝 Contributing
|
|
285
204
|
|
|
286
|
-
|
|
287
|
-
2. Check [TODO.md](./TODO.md) or [GitHub issues](https://github.com/lvndry/jazz/issues) for tasks
|
|
288
|
-
ready to be tackled
|
|
289
|
-
3. Read [CONTRIBUTING.md](CONTRIBUTING.md) for development guidelines
|
|
290
|
-
4. Submit a PR!
|
|
205
|
+
We welcome contributions of all kinds: bug fixes, docs, tests, and features.
|
|
291
206
|
|
|
292
|
-
|
|
207
|
+
- See [`CONTRIBUTING.md`](CONTRIBUTING.md) for the contributor guide and PR process
|
|
293
208
|
|
|
294
|
-
|
|
209
|
+
---
|
|
295
210
|
|
|
296
|
-
##
|
|
211
|
+
## 📄 License
|
|
297
212
|
|
|
298
|
-
|
|
299
|
-
- 💬 [Discord Community](https://discord.gg/yBDbS2NZju)
|
|
300
|
-
- 🐛 [Issue Tracker](https://github.com/lvndry/jazz/issues)
|
|
301
|
-
- 💡 [Discussions](https://github.com/lvndry/jazz/discussions)
|
|
213
|
+
MIT — see [`LICENSE`](LICENSE).
|
|
302
214
|
|
|
303
|
-
|
|
215
|
+
---
|
|
304
216
|
|
|
305
|
-
|
|
217
|
+
<div align="center">
|
|
306
218
|
|
|
307
|
-
|
|
219
|
+
⭐ If Jazz helps you automate your work, please give the project a star on GitHub — it helps others find it!
|
|
308
220
|
|
|
309
|
-
|
|
221
|
+
[⬆ Back to top](#jazz-)
|
|
310
222
|
|
|
311
|
-
|
|
223
|
+
</div>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FileSystem } from "@effect/platform";
|
|
2
|
+
import { Effect, Layer } from "effect";
|
|
3
|
+
import type { JazzError } from "./core/types/errors";
|
|
4
|
+
export interface AppLayerConfig {
|
|
5
|
+
verbose?: boolean | undefined;
|
|
6
|
+
debug?: boolean | undefined;
|
|
7
|
+
configPath?: string | undefined;
|
|
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>>;
|
|
10
|
+
export declare function runCliEffect<R, E extends JazzError | Error>(effect: Effect.Effect<void, E, R>, config?: AppLayerConfig): void;
|
|
11
|
+
//# sourceMappingURL=app-layer.d.ts.map
|
|
@@ -0,0 +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,qvCA0EzD;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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cli-app.d.ts","sourceRoot":"","sources":["../../src/cli/cli-app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAwPhC,wBAAgB,YAAY,IAAI,MAAM,CAAC,MAAM,CAAC,OAAO,EAAE,KAAK,CAAC,CA0B5D"}
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { Effect } from "effect";
|
|
2
|
-
import { type AgentService } from "../../core/
|
|
2
|
+
import { type AgentService } from "../../core/interfaces/agent-service";
|
|
3
|
+
import { type CLIOptions } from "../../core/interfaces/cli-options";
|
|
4
|
+
import { type TerminalService } from "../../core/interfaces/terminal";
|
|
3
5
|
import { StorageError, StorageNotFoundError } from "../../core/types/errors";
|
|
4
|
-
|
|
5
|
-
export declare function listAgentsCommand(options?: {
|
|
6
|
-
verbose?: boolean;
|
|
7
|
-
}): Effect.Effect<void, StorageError, AgentService | TerminalService>;
|
|
6
|
+
export declare function listAgentsCommand(): Effect.Effect<void, StorageError, AgentService | TerminalService | CLIOptions>;
|
|
8
7
|
export declare function deleteAgentCommand(agentIdentifier: string): Effect.Effect<void, StorageError | StorageNotFoundError, AgentService | TerminalService>;
|
|
9
8
|
export declare function getAgentCommand(agentIdentifier: string): Effect.Effect<void, StorageError | StorageNotFoundError, AgentService | TerminalService>;
|
|
10
|
-
//# sourceMappingURL=
|
|
9
|
+
//# sourceMappingURL=agent-management.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agent-management.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/agent-management.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,mCAAmC,CAAC;AACnF,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,yBAAyB,CAAC;AAyB7E,wBAAgB,iBAAiB,IAAI,MAAM,CAAC,MAAM,CAChD,IAAI,EACJ,YAAY,EACZ,YAAY,GAAG,eAAe,GAAG,UAAU,CAC5C,CA4CA;AAqBD,wBAAgB,kBAAkB,CAChC,eAAe,EAAE,MAAM,GACtB,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,YAAY,GAAG,oBAAoB,EAAE,YAAY,GAAG,eAAe,CAAC,CAe1F;AAqBD,wBAAgB,eAAe,CAC7B,eAAe,EAAE,MAAM,GACtB,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,YAAY,GAAG,oBAAoB,EAAE,YAAY,GAAG,eAAe,CAAC,CA8B1F"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { FileSystem } from "@effect/platform";
|
|
2
2
|
import { Effect } from "effect";
|
|
3
|
-
import { type
|
|
4
|
-
import {
|
|
5
|
-
import { type LoggerService } from "../../
|
|
6
|
-
import { type TerminalService } from "../../
|
|
7
|
-
|
|
8
|
-
export declare function
|
|
9
|
-
export declare function
|
|
3
|
+
import { type AgentConfigService } from "../../core/interfaces/agent-config";
|
|
4
|
+
import { type GmailService } from "../../core/interfaces/gmail";
|
|
5
|
+
import { type LoggerService } from "../../core/interfaces/logger";
|
|
6
|
+
import { type TerminalService } from "../../core/interfaces/terminal";
|
|
7
|
+
import { GmailAuthenticationError } from "../../core/types/errors";
|
|
8
|
+
export declare function googleLoginCommand(): Effect.Effect<void, GmailAuthenticationError, GmailService | LoggerService | AgentConfigService | TerminalService>;
|
|
9
|
+
export declare function googleLogoutCommand(): Effect.Effect<void, never, FileSystem.FileSystem | AgentConfigService | LoggerService | TerminalService>;
|
|
10
|
+
export declare function googleStatusCommand(): Effect.Effect<void, never, FileSystem.FileSystem | AgentConfigService | LoggerService | TerminalService>;
|
|
10
11
|
//# sourceMappingURL=auth.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/auth.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/auth.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,6BAA6B,CAAC;AACjF,OAAO,EAAoB,KAAK,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACpF,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAE,wBAAwB,EAAE,MAAM,yBAAyB,CAAC;AAkBnE,wBAAgB,kBAAkB,IAAI,MAAM,CAAC,MAAM,CACjD,IAAI,EACJ,wBAAwB,EACxB,YAAY,GAAG,aAAa,GAAG,kBAAkB,GAAG,eAAe,CACpE,CAeA;AAKD,wBAAgB,mBAAmB,IAAI,MAAM,CAAC,MAAM,CAClD,IAAI,EACJ,KAAK,EACL,UAAU,CAAC,UAAU,GAAG,kBAAkB,GAAG,aAAa,GAAG,eAAe,CAC7E,CA0CA;AAKD,wBAAgB,mBAAmB,IAAI,MAAM,CAAC,MAAM,CAClD,IAAI,EACJ,KAAK,EACL,UAAU,CAAC,UAAU,GAAG,kBAAkB,GAAG,aAAa,GAAG,eAAe,CAC7E,CAgEA"}
|
|
@@ -1,15 +1,6 @@
|
|
|
1
|
-
import { FileSystem } from "@effect/platform";
|
|
2
1
|
import { Effect } from "effect";
|
|
3
|
-
import {
|
|
4
|
-
import type { ToolRegistry } from "../../core/agent/tools/tool-registry";
|
|
5
|
-
import { AgentAlreadyExistsError, AgentConfigurationError, AgentNotFoundError, LLMConfigurationError, StorageError, StorageNotFoundError, ValidationError } from "../../core/types/errors";
|
|
6
|
-
import type { ConfigService } from "../../services/config";
|
|
7
|
-
import { type FileSystemContextService } from "../../services/fs";
|
|
8
|
-
import { type LLMService } from "../../services/llm/interfaces";
|
|
9
|
-
import { type LoggerService } from "../../services/logger";
|
|
10
|
-
import { type TerminalService } from "../../services/terminal";
|
|
11
|
-
export declare function createAgentCommand(): Effect.Effect<void, StorageError | AgentAlreadyExistsError | AgentConfigurationError | ValidationError | LLMConfigurationError, AgentService | LLMService | ToolRegistry | TerminalService | ConfigService>;
|
|
2
|
+
import { AgentNotFoundError } from "../../core/types/errors";
|
|
12
3
|
export declare function chatWithAIAgentCommand(agentIdentifier: string, options?: {
|
|
13
4
|
stream?: boolean;
|
|
14
|
-
}): Effect.Effect<
|
|
5
|
+
}): Effect.Effect<undefined, AgentNotFoundError | import("../../core/types").StorageError, import("../../core/interfaces/presentation").PresentationService | import("effect/Context").Tag<import("../../core/interfaces/agent-config").AgentConfigService, import("../../core/interfaces/agent-config").AgentConfigService> | import("../../core/interfaces/tool-registry").ToolRequirements | import("../../core/interfaces/tool-registry").ToolRegistry | import("../../core/interfaces/terminal").TerminalService | import("../../core/interfaces/agent-service").AgentService | import("../../core/interfaces/llm").LLMService | import("../../core/interfaces/chat-service").ChatService>;
|
|
15
6
|
//# sourceMappingURL=chat-agent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chat-agent.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/chat-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"chat-agent.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/chat-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAKhC,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAc7D,wBAAgB,sBAAsB,CACpC,eAAe,EAAE,MAAM,EACvB,OAAO,CAAC,EAAE;IACR,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB,+pBAgDF"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Effect } from "effect";
|
|
2
2
|
import { ConfigurationValidationError } from "../../core/types/errors";
|
|
3
|
-
import { type
|
|
4
|
-
import { type TerminalService } from "../../
|
|
5
|
-
export declare function listConfigCommand(): Effect.Effect<void, never,
|
|
6
|
-
export declare function getConfigCommand(key: string): Effect.Effect<void, never,
|
|
7
|
-
export declare function setConfigCommand(key: string, value?: string): Effect.Effect<void, ConfigurationValidationError,
|
|
3
|
+
import { type AgentConfigService } from "../../core/interfaces/agent-config";
|
|
4
|
+
import { type TerminalService } from "../../core/interfaces/terminal";
|
|
5
|
+
export declare function listConfigCommand(): Effect.Effect<void, never, AgentConfigService | TerminalService>;
|
|
6
|
+
export declare function getConfigCommand(key: string): Effect.Effect<void, never, AgentConfigService | TerminalService>;
|
|
7
|
+
export declare function setConfigCommand(key: string, value?: string): Effect.Effect<void, ConfigurationValidationError, AgentConfigService | TerminalService>;
|
|
8
8
|
//# sourceMappingURL=config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAEhC,OAAO,EAAE,4BAA4B,EAAE,MAAM,yBAAyB,CAAC;AAEvE,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAU1F,wBAAgB,iBAAiB,IAAI,MAAM,CAAC,MAAM,CAChD,IAAI,EACJ,KAAK,EACL,kBAAkB,GAAG,eAAe,CACrC,CAQA;AAMD,wBAAgB,gBAAgB,CAC9B,GAAG,EAAE,MAAM,GACV,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,kBAAkB,GAAG,eAAe,CAAC,CAqBlE;AAMD,wBAAgB,gBAAgB,CAC9B,GAAG,EAAE,MAAM,EACX,KAAK,CAAC,EAAE,MAAM,GACb,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,4BAA4B,EAAE,kBAAkB,GAAG,eAAe,CAAC,CAqFzF"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Effect } from "effect";
|
|
2
|
+
import { type AgentConfigService } from "../../core/interfaces/agent-config";
|
|
3
|
+
import { type AgentService } from "../../core/interfaces/agent-service";
|
|
4
|
+
import { type LLMService } from "../../core/interfaces/llm";
|
|
5
|
+
import { type TerminalService } from "../../core/interfaces/terminal";
|
|
6
|
+
import { type ToolRegistry } from "../../core/interfaces/tool-registry";
|
|
7
|
+
import { AgentAlreadyExistsError, AgentConfigurationError, LLMConfigurationError, StorageError, ValidationError } from "../../core/types/errors";
|
|
8
|
+
export declare function createAgentCommand(): Effect.Effect<void, StorageError | AgentAlreadyExistsError | AgentConfigurationError | ValidationError | LLMConfigurationError, AgentService | LLMService | ToolRegistry | TerminalService | AgentConfigService>;
|
|
9
|
+
//# sourceMappingURL=create-agent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"create-agent.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/create-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAYhC,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC3E,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,qBAAqB,EACrB,YAAY,EACZ,eAAe,EAChB,MAAM,yBAAyB,CAAC;AAgEjC,wBAAgB,kBAAkB,IAAI,MAAM,CAAC,MAAM,CACjD,IAAI,EACF,YAAY,GACZ,uBAAuB,GACvB,uBAAuB,GACvB,eAAe,GACf,qBAAqB,EACvB,YAAY,GAAG,UAAU,GAAG,YAAY,GAAG,eAAe,GAAG,kBAAkB,CAChF,CAoFA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Effect } from "effect";
|
|
2
|
-
import { type
|
|
3
|
-
import { type
|
|
2
|
+
import { type AgentConfigService } from "../../core/interfaces/agent-config";
|
|
3
|
+
import { type AgentService } from "../../core/interfaces/agent-service";
|
|
4
|
+
import { type LLMService } from "../../core/interfaces/llm";
|
|
5
|
+
import { type TerminalService } from "../../core/interfaces/terminal";
|
|
6
|
+
import { type ToolRegistry } from "../../core/interfaces/tool-registry";
|
|
4
7
|
import { AgentAlreadyExistsError, AgentConfigurationError, LLMConfigurationError, StorageError, StorageNotFoundError, ValidationError } from "../../core/types/errors";
|
|
5
|
-
|
|
6
|
-
import { type LLMService } from "../../services/llm/interfaces";
|
|
7
|
-
import { type TerminalService } from "../../services/terminal";
|
|
8
|
-
export declare function editAgentCommand(agentIdentifier: string): Effect.Effect<void, StorageError | StorageNotFoundError | AgentConfigurationError | AgentAlreadyExistsError | ValidationError | LLMConfigurationError, AgentService | LLMService | ToolRegistry | TerminalService | ConfigService>;
|
|
8
|
+
export declare function editAgentCommand(agentIdentifier: string): Effect.Effect<void, StorageError | StorageNotFoundError | AgentConfigurationError | AgentAlreadyExistsError | ValidationError | LLMConfigurationError, AgentService | LLMService | ToolRegistry | TerminalService | AgentConfigService>;
|
|
9
9
|
//# sourceMappingURL=edit-agent.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"edit-agent.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/edit-agent.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"edit-agent.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/edit-agent.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAMhC,OAAO,EAAyB,KAAK,kBAAkB,EAAE,MAAM,oCAAoC,CAAC;AACpG,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,qCAAqC,CAAC;AACzF,OAAO,EAAiB,KAAK,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAC3E,OAAO,EAAsB,KAAK,eAAe,EAAE,MAAM,gCAAgC,CAAC;AAC1F,OAAO,EAAmB,KAAK,YAAY,EAAE,MAAM,qCAAqC,CAAC;AAEzF,OAAO,EACL,uBAAuB,EACvB,uBAAuB,EACvB,qBAAqB,EACrB,YAAY,EACZ,oBAAoB,EACpB,eAAe,EAChB,MAAM,yBAAyB,CAAC;AAmBjC,wBAAgB,gBAAgB,CAC9B,eAAe,EAAE,MAAM,GACtB,MAAM,CAAC,MAAM,CACd,IAAI,EACF,YAAY,GACZ,oBAAoB,GACpB,uBAAuB,GACvB,uBAAuB,GACvB,eAAe,GACf,qBAAqB,EACvB,YAAY,GAAG,UAAU,GAAG,YAAY,GAAG,eAAe,GAAG,kBAAkB,CAChF,CA8GA"}
|