agentstudio 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -2
- package/shared/index.d.ts +6 -0
- package/shared/index.d.ts.map +1 -0
- package/shared/index.js +7 -0
- package/shared/types/agents.d.ts +80 -0
- package/shared/types/agents.d.ts.map +1 -0
- package/shared/types/agents.js +145 -0
- package/shared/types/claude-history.d.ts +61 -0
- package/shared/types/claude-history.d.ts.map +1 -0
- package/shared/types/claude-history.js +2 -0
- package/shared/types/claude-versions.d.ts +40 -0
- package/shared/types/claude-versions.d.ts.map +1 -0
- package/shared/types/claude-versions.js +1 -0
- package/shared/types/commands.d.ts +48 -0
- package/shared/types/commands.d.ts.map +1 -0
- package/shared/types/commands.js +19 -0
- package/shared/types/projects.d.ts +35 -0
- package/shared/types/projects.d.ts.map +1 -0
- package/shared/types/projects.js +2 -0
- package/shared/types/subagents.d.ts +26 -0
- package/shared/types/subagents.d.ts.map +1 -0
- package/shared/types/subagents.js +1 -0
- package/shared/utils/agentStorage.d.ts +27 -0
- package/shared/utils/agentStorage.d.ts.map +1 -0
- package/shared/utils/agentStorage.js +392 -0
- package/shared/utils/claudeVersionStorage.d.ts +16 -0
- package/shared/utils/claudeVersionStorage.d.ts.map +1 -0
- package/shared/utils/claudeVersionStorage.js +230 -0
- package/shared/utils/projectMetadataStorage.d.ts +94 -0
- package/shared/utils/projectMetadataStorage.d.ts.map +1 -0
- package/shared/utils/projectMetadataStorage.js +422 -0
- package/shared/utils/toolMapping.d.ts +56 -0
- package/shared/utils/toolMapping.d.ts.map +1 -0
- package/shared/utils/toolMapping.js +71 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentstudio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "AgentStudio - AI-powered presentation editor with Claude integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"prepublishOnly": "npm run build"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@agentstudio/shared": "workspace:*",
|
|
20
19
|
"@ai-sdk/anthropic": "^1.0.5",
|
|
21
20
|
"@ai-sdk/openai": "^1.0.7",
|
|
22
21
|
"@anthropic-ai/claude-code": "^2.0.10",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,kBAAkB,CAAC;AACjC,cAAc,mBAAmB,CAAC;AAClC,cAAc,kBAAkB,CAAC;AAGjC,cAAc,sBAAsB,CAAC"}
|
package/shared/index.js
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
export interface AgentTool {
|
|
2
|
+
name: string;
|
|
3
|
+
enabled: boolean;
|
|
4
|
+
permissions?: {
|
|
5
|
+
requireConfirmation?: boolean;
|
|
6
|
+
allowedPaths?: string[];
|
|
7
|
+
blockedPaths?: string[];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export interface AgentConfig {
|
|
11
|
+
id: string;
|
|
12
|
+
name: string;
|
|
13
|
+
description: string;
|
|
14
|
+
version: string;
|
|
15
|
+
systemPrompt: string;
|
|
16
|
+
maxTurns: number;
|
|
17
|
+
permissionMode: 'default' | 'acceptEdits' | 'bypassPermissions' | 'plan';
|
|
18
|
+
model: string;
|
|
19
|
+
allowedTools: AgentTool[];
|
|
20
|
+
ui: {
|
|
21
|
+
icon: string;
|
|
22
|
+
headerTitle: string;
|
|
23
|
+
headerDescription: string;
|
|
24
|
+
welcomeMessage?: string;
|
|
25
|
+
componentType: 'slides' | 'chat' | 'documents' | 'code' | 'custom';
|
|
26
|
+
customComponent?: string;
|
|
27
|
+
};
|
|
28
|
+
workingDirectory?: string;
|
|
29
|
+
dataDirectory?: string;
|
|
30
|
+
fileTypes?: string[];
|
|
31
|
+
author: string;
|
|
32
|
+
homepage?: string;
|
|
33
|
+
tags: string[];
|
|
34
|
+
createdAt: string;
|
|
35
|
+
updatedAt: string;
|
|
36
|
+
enabled: boolean;
|
|
37
|
+
projects?: string[];
|
|
38
|
+
}
|
|
39
|
+
export interface AgentSession {
|
|
40
|
+
id: string;
|
|
41
|
+
agentId: string;
|
|
42
|
+
title: string;
|
|
43
|
+
createdAt: number;
|
|
44
|
+
lastUpdated: number;
|
|
45
|
+
messages: AgentMessage[];
|
|
46
|
+
claudeVersionId?: string;
|
|
47
|
+
customData?: Record<string, unknown>;
|
|
48
|
+
}
|
|
49
|
+
export interface AgentMessage {
|
|
50
|
+
id: string;
|
|
51
|
+
role: 'user' | 'assistant';
|
|
52
|
+
content: string;
|
|
53
|
+
timestamp: number;
|
|
54
|
+
messageParts?: MessagePart[];
|
|
55
|
+
agentId: string;
|
|
56
|
+
}
|
|
57
|
+
export interface MessagePart {
|
|
58
|
+
id: string;
|
|
59
|
+
type: 'text' | 'tool' | 'command' | 'compactSummary' | 'image';
|
|
60
|
+
content?: string;
|
|
61
|
+
toolData?: {
|
|
62
|
+
id: string;
|
|
63
|
+
toolName: string;
|
|
64
|
+
toolInput: Record<string, unknown>;
|
|
65
|
+
toolResult?: string;
|
|
66
|
+
isExecuting: boolean;
|
|
67
|
+
isError?: boolean;
|
|
68
|
+
claudeId?: string;
|
|
69
|
+
};
|
|
70
|
+
imageData?: {
|
|
71
|
+
id: string;
|
|
72
|
+
data: string;
|
|
73
|
+
mediaType: string;
|
|
74
|
+
filename?: string;
|
|
75
|
+
};
|
|
76
|
+
order: number;
|
|
77
|
+
originalContent?: string;
|
|
78
|
+
}
|
|
79
|
+
export declare const BUILTIN_AGENTS: Partial<AgentConfig>[];
|
|
80
|
+
//# sourceMappingURL=agents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agents.d.ts","sourceRoot":"","sources":["../../src/types/agents.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
// Built-in agent templates
|
|
2
|
+
export const BUILTIN_AGENTS = [
|
|
3
|
+
{
|
|
4
|
+
id: 'ppt-editor',
|
|
5
|
+
name: 'PPT编辑助手',
|
|
6
|
+
description: '专门用于创建和编辑HTML演示文稿的AI助手',
|
|
7
|
+
systemPrompt: `You are an AI assistant specialized in helping users create and edit HTML presentations.
|
|
8
|
+
You can help with:
|
|
9
|
+
- Content creation and editing
|
|
10
|
+
- Design suggestions
|
|
11
|
+
- Structure improvements
|
|
12
|
+
- HTML/CSS modifications
|
|
13
|
+
- Presentation flow optimization
|
|
14
|
+
- File operations for slide management
|
|
15
|
+
|
|
16
|
+
The presentation uses HTML slides with embedded CSS styling. Each slide should be self-contained with a 1280x720 viewport.
|
|
17
|
+
Slides are stored in the ../slides/ directory relative to the backend.
|
|
18
|
+
|
|
19
|
+
Always provide helpful, specific suggestions and when possible, include code examples.
|
|
20
|
+
Please respond in Chinese.`,
|
|
21
|
+
allowedTools: [
|
|
22
|
+
{ name: 'Write', enabled: true },
|
|
23
|
+
{ name: 'Read', enabled: true },
|
|
24
|
+
{ name: 'Edit', enabled: true },
|
|
25
|
+
{ name: 'Glob', enabled: true },
|
|
26
|
+
{ name: 'MultiEdit', enabled: true },
|
|
27
|
+
{ name: 'Bash', enabled: true }
|
|
28
|
+
],
|
|
29
|
+
ui: {
|
|
30
|
+
icon: '🎯',
|
|
31
|
+
headerTitle: 'AI PPT助手',
|
|
32
|
+
headerDescription: '与AI聊天来编辑你的演示文稿',
|
|
33
|
+
welcomeMessage: '你好!我是你的AI PPT助手,可以帮你创建、编辑和优化HTML演示文稿。有什么需要帮助的吗?',
|
|
34
|
+
componentType: 'slides'
|
|
35
|
+
},
|
|
36
|
+
workingDirectory: '../slides',
|
|
37
|
+
dataDirectory: '.ai-sessions',
|
|
38
|
+
fileTypes: ['.html', '.css', '.js'],
|
|
39
|
+
tags: ['presentation', 'html', 'css', 'slides'],
|
|
40
|
+
enabled: true
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
id: 'code-assistant',
|
|
44
|
+
name: '代码助手',
|
|
45
|
+
description: '通用代码开发和审查助手',
|
|
46
|
+
systemPrompt: `You are a professional software development assistant. You can help with:
|
|
47
|
+
- Code review and optimization
|
|
48
|
+
- Bug fixing and debugging
|
|
49
|
+
- Architecture design
|
|
50
|
+
- Best practices implementation
|
|
51
|
+
- Documentation writing
|
|
52
|
+
- Testing strategies
|
|
53
|
+
|
|
54
|
+
You have access to file system operations and can directly modify code files.
|
|
55
|
+
Always follow coding best practices and maintain clean, readable code.
|
|
56
|
+
Please respond in Chinese.`,
|
|
57
|
+
allowedTools: [
|
|
58
|
+
{ name: 'Write', enabled: true },
|
|
59
|
+
{ name: 'Read', enabled: true },
|
|
60
|
+
{ name: 'Edit', enabled: true },
|
|
61
|
+
{ name: 'Glob', enabled: true },
|
|
62
|
+
{ name: 'MultiEdit', enabled: true },
|
|
63
|
+
{ name: 'Bash', enabled: true },
|
|
64
|
+
{ name: 'Task', enabled: true }
|
|
65
|
+
],
|
|
66
|
+
ui: {
|
|
67
|
+
icon: '💻',
|
|
68
|
+
headerTitle: '代码助手',
|
|
69
|
+
headerDescription: '专业的软件开发和代码审查助手',
|
|
70
|
+
welcomeMessage: '你好!我是专业的代码助手,可以帮你进行代码开发、审查、调试和优化。请告诉我你想要解决的编程问题!',
|
|
71
|
+
componentType: 'code'
|
|
72
|
+
},
|
|
73
|
+
tags: ['coding', 'development', 'review', 'debugging'],
|
|
74
|
+
enabled: false
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
id: 'document-writer',
|
|
78
|
+
name: '文档助手',
|
|
79
|
+
description: '专注于文档创建和编辑的助手',
|
|
80
|
+
systemPrompt: `You are a professional document writing assistant. You can help with:
|
|
81
|
+
- Creating and editing documentation
|
|
82
|
+
- Technical writing
|
|
83
|
+
- Content structuring
|
|
84
|
+
- Markdown formatting
|
|
85
|
+
- Research and information gathering
|
|
86
|
+
- Proofreading and editing
|
|
87
|
+
|
|
88
|
+
You work primarily with text files and markdown documents.
|
|
89
|
+
Focus on clarity, accuracy, and professional presentation.
|
|
90
|
+
Please respond in Chinese.`,
|
|
91
|
+
allowedTools: [
|
|
92
|
+
{ name: 'Write', enabled: true },
|
|
93
|
+
{ name: 'Read', enabled: true },
|
|
94
|
+
{ name: 'Edit', enabled: true },
|
|
95
|
+
{ name: 'Glob', enabled: true },
|
|
96
|
+
{ name: 'WebFetch', enabled: true },
|
|
97
|
+
{ name: 'WebSearch', enabled: true }
|
|
98
|
+
],
|
|
99
|
+
ui: {
|
|
100
|
+
icon: '📝',
|
|
101
|
+
headerTitle: '文档助手',
|
|
102
|
+
headerDescription: '专业的文档创建和编辑助手',
|
|
103
|
+
welcomeMessage: '你好!我是文档助手,专门帮助你创建、编辑和优化各种文档。无论是技术文档还是普通文档,我都能为你提供专业建议!',
|
|
104
|
+
componentType: 'documents'
|
|
105
|
+
},
|
|
106
|
+
fileTypes: ['.md', '.txt', '.rst', '.adoc'],
|
|
107
|
+
tags: ['documentation', 'writing', 'markdown', 'content'],
|
|
108
|
+
enabled: true
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
id: 'general-chat',
|
|
112
|
+
name: '通用聊天助手',
|
|
113
|
+
description: '通用的AI聊天助手,适用于各种对话和咨询',
|
|
114
|
+
systemPrompt: `You are a general-purpose AI assistant. You can help with:
|
|
115
|
+
- General questions and conversations
|
|
116
|
+
- Problem-solving and brainstorming
|
|
117
|
+
- Information and explanations
|
|
118
|
+
- Creative tasks and writing
|
|
119
|
+
- Analysis and research
|
|
120
|
+
- File operations when needed
|
|
121
|
+
|
|
122
|
+
You are helpful, harmless, and honest. Always strive to provide accurate and useful information.
|
|
123
|
+
Please respond in Chinese unless the user specifically requests another language.`,
|
|
124
|
+
allowedTools: [
|
|
125
|
+
{ name: 'Write', enabled: true },
|
|
126
|
+
{ name: 'Read', enabled: true },
|
|
127
|
+
{ name: 'Edit', enabled: true },
|
|
128
|
+
{ name: 'Glob', enabled: true },
|
|
129
|
+
{ name: 'MultiEdit', enabled: true },
|
|
130
|
+
{ name: 'Bash', enabled: true },
|
|
131
|
+
{ name: 'Task', enabled: true },
|
|
132
|
+
{ name: 'WebFetch', enabled: true },
|
|
133
|
+
{ name: 'WebSearch', enabled: true }
|
|
134
|
+
],
|
|
135
|
+
ui: {
|
|
136
|
+
icon: '💬',
|
|
137
|
+
headerTitle: '通用聊天',
|
|
138
|
+
headerDescription: '与AI进行自由对话和咨询',
|
|
139
|
+
welcomeMessage: '你好!我是通用AI助手,可以帮你解答问题、进行对话、处理各种任务。有什么我可以帮助你的吗?',
|
|
140
|
+
componentType: 'chat'
|
|
141
|
+
},
|
|
142
|
+
tags: ['general', 'chat', 'conversation', 'assistant'],
|
|
143
|
+
enabled: true
|
|
144
|
+
}
|
|
145
|
+
];
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export interface ClaudeMessageContent {
|
|
2
|
+
type: string;
|
|
3
|
+
text?: string;
|
|
4
|
+
content?: string | any[];
|
|
5
|
+
id?: string;
|
|
6
|
+
name?: string;
|
|
7
|
+
input?: any;
|
|
8
|
+
tool_use_id?: string;
|
|
9
|
+
is_error?: boolean;
|
|
10
|
+
signature?: string;
|
|
11
|
+
thinking?: string;
|
|
12
|
+
}
|
|
13
|
+
export interface ClaudeMessage {
|
|
14
|
+
role: 'user' | 'assistant';
|
|
15
|
+
content: string | any[];
|
|
16
|
+
id?: string;
|
|
17
|
+
model?: string;
|
|
18
|
+
type?: string;
|
|
19
|
+
stop_reason?: string | null;
|
|
20
|
+
stop_sequence?: string | null;
|
|
21
|
+
usage?: {
|
|
22
|
+
input_tokens: number;
|
|
23
|
+
output_tokens: number;
|
|
24
|
+
cache_read_input_tokens?: number;
|
|
25
|
+
cache_creation_input_tokens?: number;
|
|
26
|
+
service_tier?: string;
|
|
27
|
+
cache_creation?: {
|
|
28
|
+
ephemeral_1h_input_tokens?: number;
|
|
29
|
+
ephemeral_5m_input_tokens?: number;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export interface ClaudeHistoryMessage {
|
|
34
|
+
type: 'summary' | 'user' | 'text' | 'assistant' | 'message' | 'thinking' | 'tool_use' | 'tool_result';
|
|
35
|
+
uuid: string;
|
|
36
|
+
timestamp: string;
|
|
37
|
+
sessionId: string;
|
|
38
|
+
summary?: string;
|
|
39
|
+
leafUuid?: string;
|
|
40
|
+
message?: ClaudeMessage;
|
|
41
|
+
parentUuid?: string | null;
|
|
42
|
+
isSidechain?: boolean;
|
|
43
|
+
isMeta?: boolean;
|
|
44
|
+
cwd?: string;
|
|
45
|
+
gitBranch?: string;
|
|
46
|
+
version?: string;
|
|
47
|
+
userType?: string;
|
|
48
|
+
requestId?: string;
|
|
49
|
+
toolUseResult?: any;
|
|
50
|
+
isCompactSummary?: boolean;
|
|
51
|
+
isCompactCommand?: boolean;
|
|
52
|
+
isVisibleInTranscriptOnly?: boolean;
|
|
53
|
+
}
|
|
54
|
+
export interface ClaudeHistorySession {
|
|
55
|
+
id: string;
|
|
56
|
+
title: string;
|
|
57
|
+
createdAt: string;
|
|
58
|
+
lastUpdated: string;
|
|
59
|
+
messages: ClaudeHistoryMessage[];
|
|
60
|
+
}
|
|
61
|
+
//# sourceMappingURL=claude-history.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claude-history.d.ts","sourceRoot":"","sources":["../../src/types/claude-history.ts"],"names":[],"mappings":"AAGA,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,GAAG,GAAG,EAAE,CAAC;IACzB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,GAAG,WAAW,CAAC;IAC3B,OAAO,EAAE,MAAM,GAAG,GAAG,EAAE,CAAC;IACxB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,KAAK,CAAC,EAAE;QACN,YAAY,EAAE,MAAM,CAAC;QACrB,aAAa,EAAE,MAAM,CAAC;QACtB,uBAAuB,CAAC,EAAE,MAAM,CAAC;QACjC,2BAA2B,CAAC,EAAE,MAAM,CAAC;QACrC,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,cAAc,CAAC,EAAE;YACf,yBAAyB,CAAC,EAAE,MAAM,CAAC;YACnC,yBAAyB,CAAC,EAAE,MAAM,CAAC;SACpC,CAAC;KACH,CAAC;CACH;AAGD,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,SAAS,GAAG,MAAM,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,CAAC;IACtG,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAGlB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,OAAO,CAAC,EAAE,aAAa,CAAC;IAGxB,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IAGjB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IAGnB,aAAa,CAAC,EAAE,GAAG,CAAC;IAGpB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,yBAAyB,CAAC,EAAE,OAAO,CAAC;CACrC;AAED,MAAM,WAAW,oBAAoB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,oBAAoB,EAAE,CAAC;CAClC"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
export interface ModelConfig {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
isVision: boolean;
|
|
5
|
+
description?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface ClaudeVersion {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
alias: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
executablePath?: string;
|
|
13
|
+
isDefault: boolean;
|
|
14
|
+
isSystem: boolean;
|
|
15
|
+
environmentVariables?: Record<string, string>;
|
|
16
|
+
models: ModelConfig[];
|
|
17
|
+
createdAt: string;
|
|
18
|
+
updatedAt: string;
|
|
19
|
+
}
|
|
20
|
+
export interface ClaudeVersionCreate {
|
|
21
|
+
name: string;
|
|
22
|
+
alias: string;
|
|
23
|
+
description?: string;
|
|
24
|
+
executablePath?: string;
|
|
25
|
+
environmentVariables?: Record<string, string>;
|
|
26
|
+
models?: ModelConfig[];
|
|
27
|
+
}
|
|
28
|
+
export interface ClaudeVersionUpdate {
|
|
29
|
+
name?: string;
|
|
30
|
+
alias?: string;
|
|
31
|
+
description?: string;
|
|
32
|
+
executablePath?: string;
|
|
33
|
+
environmentVariables?: Record<string, string>;
|
|
34
|
+
models?: ModelConfig[];
|
|
35
|
+
}
|
|
36
|
+
export interface ClaudeVersionResponse {
|
|
37
|
+
versions: ClaudeVersion[];
|
|
38
|
+
defaultVersionId: string | null;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=claude-versions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claude-versions.d.ts","sourceRoot":"","sources":["../../src/types/claude-versions.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAClB,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9C,MAAM,EAAE,WAAW,EAAE,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9C,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,mBAAmB;IAClC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,oBAAoB,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC9C,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,aAAa,EAAE,CAAC;IAC1B,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;CACjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export interface SlashCommand {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
content: string;
|
|
6
|
+
scope: 'project' | 'user';
|
|
7
|
+
namespace?: string;
|
|
8
|
+
argumentHint?: string;
|
|
9
|
+
allowedTools?: string[];
|
|
10
|
+
model?: string;
|
|
11
|
+
createdAt: Date;
|
|
12
|
+
updatedAt: Date;
|
|
13
|
+
}
|
|
14
|
+
export interface SlashCommandCreate {
|
|
15
|
+
name: string;
|
|
16
|
+
description: string;
|
|
17
|
+
content: string;
|
|
18
|
+
scope: 'project' | 'user';
|
|
19
|
+
namespace?: string;
|
|
20
|
+
argumentHint?: string;
|
|
21
|
+
allowedTools?: string[];
|
|
22
|
+
model?: string;
|
|
23
|
+
}
|
|
24
|
+
export interface SlashCommandUpdate {
|
|
25
|
+
description?: string;
|
|
26
|
+
content?: string;
|
|
27
|
+
argumentHint?: string;
|
|
28
|
+
allowedTools?: string[];
|
|
29
|
+
model?: string;
|
|
30
|
+
namespace?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface SlashCommandFilter {
|
|
33
|
+
scope?: 'project' | 'user' | 'all';
|
|
34
|
+
namespace?: string;
|
|
35
|
+
search?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare const COMMAND_SCOPES: readonly [{
|
|
38
|
+
readonly value: "project";
|
|
39
|
+
readonly label: "项目命令";
|
|
40
|
+
readonly description: "存储在项目中,与团队共享";
|
|
41
|
+
}, {
|
|
42
|
+
readonly value: "user";
|
|
43
|
+
readonly label: "个人命令";
|
|
44
|
+
readonly description: "存储在用户配置中,仅个人使用";
|
|
45
|
+
}];
|
|
46
|
+
export declare const DEFAULT_MODELS: readonly ["claude-3-5-sonnet-20241022", "claude-3-5-haiku-20241022", "claude-3-opus-20240229"];
|
|
47
|
+
export declare const COMMON_TOOLS: readonly ["Read", "Write", "Edit", "Bash", "Grep", "Glob", "WebFetch", "WebSearch"];
|
|
48
|
+
//# sourceMappingURL=commands.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"commands.d.ts","sourceRoot":"","sources":["../../src/types/commands.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,SAAS,GAAG,MAAM,CAAC;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,KAAK,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,cAAc;;;;;;;;EAGjB,CAAC;AAEX,eAAO,MAAM,cAAc,gGAIjB,CAAC;AAEX,eAAO,MAAM,YAAY,qFASf,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export const COMMAND_SCOPES = [
|
|
2
|
+
{ value: 'project', label: '项目命令', description: '存储在项目中,与团队共享' },
|
|
3
|
+
{ value: 'user', label: '个人命令', description: '存储在用户配置中,仅个人使用' }
|
|
4
|
+
];
|
|
5
|
+
export const DEFAULT_MODELS = [
|
|
6
|
+
'claude-3-5-sonnet-20241022',
|
|
7
|
+
'claude-3-5-haiku-20241022',
|
|
8
|
+
'claude-3-opus-20240229'
|
|
9
|
+
];
|
|
10
|
+
export const COMMON_TOOLS = [
|
|
11
|
+
'Read',
|
|
12
|
+
'Write',
|
|
13
|
+
'Edit',
|
|
14
|
+
'Bash',
|
|
15
|
+
'Grep',
|
|
16
|
+
'Glob',
|
|
17
|
+
'WebFetch',
|
|
18
|
+
'WebSearch'
|
|
19
|
+
];
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export interface ProjectAgentConfig {
|
|
2
|
+
enabled: boolean;
|
|
3
|
+
lastUsed: string;
|
|
4
|
+
sessionCount: number;
|
|
5
|
+
customConfig: Record<string, any>;
|
|
6
|
+
}
|
|
7
|
+
export interface ProjectMetadata {
|
|
8
|
+
id: string;
|
|
9
|
+
name: string;
|
|
10
|
+
description?: string;
|
|
11
|
+
path: string;
|
|
12
|
+
createdAt: string;
|
|
13
|
+
lastAccessed: string;
|
|
14
|
+
agents: Record<string, ProjectAgentConfig>;
|
|
15
|
+
defaultAgent: string;
|
|
16
|
+
tags: string[];
|
|
17
|
+
metadata: Record<string, any>;
|
|
18
|
+
}
|
|
19
|
+
export interface ProjectWithAgentInfo {
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
dirName: string;
|
|
23
|
+
path: string;
|
|
24
|
+
realPath?: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
createdAt: string;
|
|
27
|
+
lastAccessed: string;
|
|
28
|
+
agents: string[];
|
|
29
|
+
defaultAgent: string;
|
|
30
|
+
defaultAgentName: string;
|
|
31
|
+
defaultAgentIcon: string;
|
|
32
|
+
tags: string[];
|
|
33
|
+
metadata: Record<string, any>;
|
|
34
|
+
}
|
|
35
|
+
//# sourceMappingURL=projects.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/types/projects.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IAGrB,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,kBAAkB,CAAC,CAAC;IAC3C,YAAY,EAAE,MAAM,CAAC;IAGrB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC/B;AAED,MAAM,WAAW,oBAAoB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IAGrB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,gBAAgB,EAAE,MAAM,CAAC;IAGzB,IAAI,EAAE,MAAM,EAAE,CAAC;IACf,QAAQ,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC/B"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export interface Subagent {
|
|
2
|
+
id: string;
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
content: string;
|
|
6
|
+
scope: 'user' | 'project';
|
|
7
|
+
tools?: string[];
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
updatedAt: Date;
|
|
10
|
+
}
|
|
11
|
+
export interface SubagentCreate {
|
|
12
|
+
name: string;
|
|
13
|
+
description: string;
|
|
14
|
+
content: string;
|
|
15
|
+
scope: 'user' | 'project';
|
|
16
|
+
tools?: string[];
|
|
17
|
+
}
|
|
18
|
+
export interface SubagentUpdate {
|
|
19
|
+
description?: string;
|
|
20
|
+
content?: string;
|
|
21
|
+
tools?: string[];
|
|
22
|
+
}
|
|
23
|
+
export interface SubagentFilter {
|
|
24
|
+
search?: string;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=subagents.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"subagents.d.ts","sourceRoot":"","sources":["../../src/types/subagents.ts"],"names":[],"mappings":"AACA,MAAM,WAAW,QAAQ;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;CACjB;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,cAAc;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,cAAc;IAC7B,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AgentConfig, AgentSession, AgentMessage } from '../types/agents.js';
|
|
2
|
+
export declare class AgentStorage {
|
|
3
|
+
private agentsDir;
|
|
4
|
+
private workingDir;
|
|
5
|
+
constructor(workingDir?: string);
|
|
6
|
+
private ensureDirectoriesExist;
|
|
7
|
+
private getSessionsDir;
|
|
8
|
+
private initializeBuiltinAgents;
|
|
9
|
+
getAllAgents(): AgentConfig[];
|
|
10
|
+
getAgent(agentId: string): AgentConfig | null;
|
|
11
|
+
saveAgent(agent: AgentConfig): void;
|
|
12
|
+
deleteAgent(agentId: string): boolean;
|
|
13
|
+
createAgent(agentData: Omit<AgentConfig, 'createdAt' | 'updatedAt'>): AgentConfig;
|
|
14
|
+
getAgentSessionsDir(agentId: string): string;
|
|
15
|
+
getAgentSessions(agentId: string, searchTerm?: string): AgentSession[];
|
|
16
|
+
getSession(agentId: string, sessionId: string): AgentSession | null;
|
|
17
|
+
createSession(agentId: string, title?: string): AgentSession;
|
|
18
|
+
createSessionWithId(agentId: string, sessionId: string, title?: string): AgentSession;
|
|
19
|
+
saveSession(session: AgentSession): void;
|
|
20
|
+
deleteSession(agentId: string, sessionId: string): boolean;
|
|
21
|
+
deleteAgentSessions(agentId: string): void;
|
|
22
|
+
private shouldUpdateTitle;
|
|
23
|
+
private updateSessionTitle;
|
|
24
|
+
private fallbackTitleGeneration;
|
|
25
|
+
addMessageToSession(agentId: string, sessionId: string, message: Omit<AgentMessage, 'id' | 'timestamp' | 'agentId'>): AgentMessage | null;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=agentStorage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"agentStorage.d.ts","sourceRoot":"","sources":["../../src/utils/agentStorage.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,YAAY,EAAkB,MAAM,oBAAoB,CAAC;AAG7F,qBAAa,YAAY;IACvB,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,UAAU,CAAS;gBAEf,UAAU,GAAE,MAAsB;IAY9C,OAAO,CAAC,sBAAsB;IAO9B,OAAO,CAAC,cAAc;IAStB,OAAO,CAAC,uBAAuB;IAqB/B,YAAY,IAAI,WAAW,EAAE;IAkB7B,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI;IAa7C,SAAS,CAAC,KAAK,EAAE,WAAW,GAAG,IAAI;IAWnC,WAAW,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO;IAyBrC,WAAW,CAAC,SAAS,EAAE,IAAI,CAAC,WAAW,EAAE,WAAW,GAAG,WAAW,CAAC,GAAG,WAAW;IAcjF,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,MAAM;IAQ5C,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,YAAY,EAAE;IAyDtE,UAAU,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,YAAY,GAAG,IAAI;IAcnE,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,YAAY;IAiB5D,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,YAAY;IAiBrF,WAAW,CAAC,OAAO,EAAE,YAAY,GAAG,IAAI;IAWxC,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO;IAe1D,mBAAmB,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAe1C,OAAO,CAAC,iBAAiB;YAKX,kBAAkB;IAwFhC,OAAO,CAAC,uBAAuB;IAoB/B,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,CAAC,YAAY,EAAE,IAAI,GAAG,WAAW,GAAG,SAAS,CAAC,GAAG,YAAY,GAAG,IAAI;CAiC1I"}
|