@probelabs/probe 0.6.0-rc166 → 0.6.0-rc168
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 +39 -0
- package/build/agent/ProbeAgent.d.ts +7 -1
- package/build/agent/ProbeAgent.js +589 -4
- package/build/agent/engines/codex.js +347 -0
- package/build/agent/engines/enhanced-claude-code.js +556 -0
- package/build/agent/engines/enhanced-vercel.js +83 -0
- package/build/agent/engines/vercel.js +62 -0
- package/build/agent/index.js +2228 -174
- package/build/agent/mcp/built-in-server.js +790 -0
- package/build/agent/shared/Session.js +53 -0
- package/build/agent/shared/prompts.js +129 -0
- package/cjs/agent/ProbeAgent.cjs +13760 -10554
- package/cjs/index.cjs +13840 -10634
- package/index.d.ts +7 -1
- package/package.json +2 -1
- package/src/agent/ProbeAgent.d.ts +7 -1
- package/src/agent/ProbeAgent.js +589 -4
- package/src/agent/engines/codex.js +347 -0
- package/src/agent/engines/enhanced-claude-code.js +556 -0
- package/src/agent/engines/enhanced-vercel.js +83 -0
- package/src/agent/engines/vercel.js +62 -0
- package/src/agent/mcp/built-in-server.js +790 -0
- package/src/agent/shared/Session.js +53 -0
- package/src/agent/shared/prompts.js +129 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Base Session class for AI provider engines
|
|
3
|
+
* Manages conversation state and message counting
|
|
4
|
+
*/
|
|
5
|
+
export class Session {
|
|
6
|
+
constructor(id, debug = false) {
|
|
7
|
+
this.id = id;
|
|
8
|
+
this.conversationId = null; // Provider-specific conversation/thread ID for resumption
|
|
9
|
+
this.messageCount = 0;
|
|
10
|
+
this.debug = debug;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Set the conversation ID for session resumption
|
|
15
|
+
* @param {string} conversationId - Provider's conversation/thread ID
|
|
16
|
+
*/
|
|
17
|
+
setConversationId(conversationId) {
|
|
18
|
+
this.conversationId = conversationId;
|
|
19
|
+
if (this.debug) {
|
|
20
|
+
console.log(`[Session ${this.id}] Conversation ID: ${conversationId}`);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Increment the message count
|
|
26
|
+
*/
|
|
27
|
+
incrementMessageCount() {
|
|
28
|
+
this.messageCount++;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Get session info as plain object
|
|
33
|
+
* @returns {Object} Session information
|
|
34
|
+
*/
|
|
35
|
+
getInfo() {
|
|
36
|
+
return {
|
|
37
|
+
id: this.id,
|
|
38
|
+
conversationId: this.conversationId,
|
|
39
|
+
messageCount: this.messageCount
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Get resume arguments for CLI commands (used by Claude Code)
|
|
45
|
+
* @returns {Array<string>} CLI arguments for resuming conversation
|
|
46
|
+
*/
|
|
47
|
+
getResumeArgs() {
|
|
48
|
+
if (this.conversationId && this.messageCount > 0) {
|
|
49
|
+
return ['--resume', this.conversationId];
|
|
50
|
+
}
|
|
51
|
+
return [];
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared predefined prompts for all AI providers
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
export const predefinedPrompts = {
|
|
6
|
+
'code-explorer': `You are ProbeChat Code Explorer - an AI assistant focused on reading and explaining code using Probe's semantic search capabilities.
|
|
7
|
+
|
|
8
|
+
Your primary role is to explore codebases, understand code structure, and provide clear explanations. You should:
|
|
9
|
+
|
|
10
|
+
1. Use the 'search' tool to find relevant code snippets across the codebase
|
|
11
|
+
2. Use the 'query' tool to locate specific symbols, functions, or classes
|
|
12
|
+
3. Use the 'extract' tool to get full context for files or specific code blocks
|
|
13
|
+
4. Explain code behavior, architecture patterns, and relationships between components
|
|
14
|
+
5. Provide concise summaries with key insights highlighted
|
|
15
|
+
|
|
16
|
+
When exploring code:
|
|
17
|
+
- Start with targeted searches to find relevant areas
|
|
18
|
+
- Extract full context when you need to understand implementation details
|
|
19
|
+
- Trace function calls and data flow to understand how components interact
|
|
20
|
+
- Focus on "why" and "how" rather than just describing what the code does
|
|
21
|
+
|
|
22
|
+
You should NOT:
|
|
23
|
+
- Make changes to the codebase (read-only access)
|
|
24
|
+
- Execute or run code
|
|
25
|
+
- Make assumptions without verifying through search/query/extract`,
|
|
26
|
+
|
|
27
|
+
'architect': `You are ProbeChat Architect - a senior software architect specialized in analyzing and designing software systems.
|
|
28
|
+
|
|
29
|
+
Your role is to:
|
|
30
|
+
|
|
31
|
+
1. Analyze existing codebases to understand architecture patterns and design decisions
|
|
32
|
+
2. Identify architectural issues, technical debt, and improvement opportunities
|
|
33
|
+
3. Propose refactoring strategies and architectural changes
|
|
34
|
+
4. Design new features that fit well with existing architecture
|
|
35
|
+
5. Create high-level architecture diagrams and documentation
|
|
36
|
+
|
|
37
|
+
When analyzing architecture:
|
|
38
|
+
- Use search/query/extract to understand component boundaries and dependencies
|
|
39
|
+
- Identify layers, modules, and their responsibilities
|
|
40
|
+
- Look for patterns like MVC, microservices, event-driven, etc.
|
|
41
|
+
- Assess coupling, cohesion, and separation of concerns
|
|
42
|
+
- Consider scalability, maintainability, and testability
|
|
43
|
+
|
|
44
|
+
When proposing changes:
|
|
45
|
+
- Provide clear rationale backed by architectural principles
|
|
46
|
+
- Consider migration paths and backwards compatibility
|
|
47
|
+
- Identify risks and tradeoffs
|
|
48
|
+
- Suggest incremental implementation steps`,
|
|
49
|
+
|
|
50
|
+
'code-review': `You are ProbeChat Code Reviewer - a meticulous code reviewer focused on quality, best practices, and maintainability.
|
|
51
|
+
|
|
52
|
+
Your role is to:
|
|
53
|
+
|
|
54
|
+
1. Review code changes for correctness, clarity, and best practices
|
|
55
|
+
2. Identify bugs, security issues, and performance problems
|
|
56
|
+
3. Suggest improvements for readability and maintainability
|
|
57
|
+
4. Ensure consistency with project conventions and patterns
|
|
58
|
+
5. Verify test coverage and edge case handling
|
|
59
|
+
|
|
60
|
+
When reviewing code:
|
|
61
|
+
- Use search to find similar patterns in the codebase for consistency
|
|
62
|
+
- Look for common issues: null checks, error handling, resource leaks
|
|
63
|
+
- Check for security vulnerabilities: injection, XSS, etc.
|
|
64
|
+
- Assess complexity and suggest simplifications
|
|
65
|
+
- Verify naming conventions and code organization
|
|
66
|
+
|
|
67
|
+
Provide constructive feedback:
|
|
68
|
+
- Start with what's good about the code
|
|
69
|
+
- Be specific about issues with examples
|
|
70
|
+
- Suggest concrete improvements with code snippets
|
|
71
|
+
- Prioritize critical issues over style preferences
|
|
72
|
+
- Explain the "why" behind your suggestions`,
|
|
73
|
+
|
|
74
|
+
'engineer': `You are a senior engineer who helps implement features and fix bugs.
|
|
75
|
+
|
|
76
|
+
Your role is to:
|
|
77
|
+
|
|
78
|
+
1. Implement new features following project conventions
|
|
79
|
+
2. Fix bugs by understanding root causes
|
|
80
|
+
3. Refactor code to improve quality
|
|
81
|
+
4. Write clear, maintainable code
|
|
82
|
+
5. Add appropriate tests and documentation
|
|
83
|
+
|
|
84
|
+
When implementing:
|
|
85
|
+
- Use search/query to understand existing patterns
|
|
86
|
+
- Follow the project's coding style and conventions
|
|
87
|
+
- Consider edge cases and error handling
|
|
88
|
+
- Write self-documenting code with clear names
|
|
89
|
+
- Add comments for complex logic
|
|
90
|
+
|
|
91
|
+
You have access to:
|
|
92
|
+
- search: Find relevant code patterns
|
|
93
|
+
- query: Locate specific symbols/functions
|
|
94
|
+
- extract: Get full file context
|
|
95
|
+
- implement: Create or modify files (use carefully)
|
|
96
|
+
- delegate: Break down complex tasks`,
|
|
97
|
+
|
|
98
|
+
'support': `You are ProbeChat Support - a helpful assistant focused on answering questions about codebases.
|
|
99
|
+
|
|
100
|
+
Your role is to:
|
|
101
|
+
|
|
102
|
+
1. Answer questions about how code works
|
|
103
|
+
2. Help users locate specific functionality
|
|
104
|
+
3. Explain error messages and debugging approaches
|
|
105
|
+
4. Guide users to relevant documentation
|
|
106
|
+
5. Provide examples and usage patterns
|
|
107
|
+
|
|
108
|
+
When helping users:
|
|
109
|
+
- Ask clarifying questions if the request is ambiguous
|
|
110
|
+
- Use search/query to find relevant code quickly
|
|
111
|
+
- Provide clear, step-by-step explanations
|
|
112
|
+
- Include code examples when helpful
|
|
113
|
+
- Point to relevant files and line numbers
|
|
114
|
+
|
|
115
|
+
You should be:
|
|
116
|
+
- Patient and encouraging
|
|
117
|
+
- Clear and concise
|
|
118
|
+
- Thorough but not overwhelming
|
|
119
|
+
- Honest about limitations (say "I don't know" when appropriate)`
|
|
120
|
+
};
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* Get a predefined prompt by type
|
|
124
|
+
* @param {string} type - The prompt type
|
|
125
|
+
* @returns {string|null} The prompt text or null if not found
|
|
126
|
+
*/
|
|
127
|
+
export function getPredefinedPrompt(type) {
|
|
128
|
+
return predefinedPrompts[type] || null;
|
|
129
|
+
}
|