Skip to content
Closed
Show file tree
Hide file tree
Changes from 64 commits
Commits
Show all changes
71 commits
Select commit Hold shift + click to select a range
138df6d
Add DONT_PROMPT_WSL_INSTALL to suppress VS Code WSL prompt and adjust…
StevenTCramer Jun 12, 2025
f4a9450
Update reconnection logic in useEventSource to prevent excessive retries
StevenTCramer Jun 13, 2025
f8a9d0f
remove troubleshooting stuff
StevenTCramer Jun 13, 2025
341d6a8
1 sec backoff
StevenTCramer Jun 13, 2025
13c02b6
remove more logging
StevenTCramer Jun 13, 2025
7a3d203
Remove more debug code
StevenTCramer Jun 13, 2025
a25adf8
revert to main
StevenTCramer Jun 13, 2025
814d07d
revert this too make PR easier.
StevenTCramer Jun 13, 2025
2370385
DONT_PROMPT_WSL_INSTALL doesn't work here so remove. And no longer ne…
StevenTCramer Jun 13, 2025
a296dfb
Merge branch 'main' into Cramer/2025-06-12/evals
StevenTCramer Jun 13, 2025
77d9dcd
Change exposed port to random generated one vs default 3000 to avoid …
StevenTCramer Jun 13, 2025
2928dd3
refactor: rename AssistantMessageContent to Directive with type aliases
StevenTCramer Jun 14, 2025
773075e
refactor: extract directive parsing into focused classes
StevenTCramer Jun 14, 2025
1d97e1f
refactor: break handler classes into separate files
StevenTCramer Jun 14, 2025
47c1dd7
Refactor type imports in parseAssistantMessage.ts for clarity
StevenTCramer Jun 14, 2025
9e70691
Refactor assistant message parsing: rename classes and simplify metho…
StevenTCramer Jun 14, 2025
2993a3a
Update DirectiveStreamingParser.ts to import from parsers/index.ts
StevenTCramer Jun 14, 2025
1b9d9e6
refactor: Replace manual XML parsing with SAX parser in DirectiveStre…
StevenTCramer Jun 15, 2025
439022f
fix: Complete DirectiveStreamingParser refactoring by adding log_mess…
StevenTCramer Jun 15, 2025
e3f673a
Refactor DirectiveStreamingParser for better modularity and fix test …
StevenTCramer Jun 15, 2025
6d2b212
Reorganize assistant-message
StevenTCramer Jun 15, 2025
31c51e3
Add index.ts to handlers directory for easier imports
StevenTCramer Jun 15, 2025
8914d59
Update imports to use handlers index.ts and reduce exports to necessa…
StevenTCramer Jun 15, 2025
e633378
rename assistant-message to message-parsing
StevenTCramer Jun 15, 2025
d08b0d3
Rename ToolUse to ToolDirective
StevenTCramer Jun 15, 2025
d5ac159
Refactor: Move tool directives to individual files in tool-directives…
StevenTCramer Jun 15, 2025
1bfc810
Remove duplicate tests file.
StevenTCramer Jun 15, 2025
bab0d65
removed unused import
StevenTCramer Jun 15, 2025
fda123e
Replace wildcard exports with explicit exports in handlers index.ts
StevenTCramer Jun 15, 2025
9e6c124
Replace export * with explicit
StevenTCramer Jun 16, 2025
c46ce75
fix export
StevenTCramer Jun 16, 2025
bdc102c
encapsulate/scope logLevels better and remove unused Zod stuff.
StevenTCramer Jun 16, 2025
4090116
Remove unused code
StevenTCramer Jun 16, 2025
2202273
Update tools to use specific directive types for enhanced type safety
StevenTCramer Jun 16, 2025
2550e85
Update newTaskTool.test.ts to use specific directive types directly
StevenTCramer Jun 16, 2025
4a3f3eb
Update useMcpToolTool.test.ts to use specific directive types directly
StevenTCramer Jun 16, 2025
5efd95a
Update writeToFileTool.test.ts to use specific directive types directly
StevenTCramer Jun 16, 2025
f10ab35
Add test case for directives inside triple backticks
StevenTCramer Jun 16, 2025
5144039
WIP: Implement code block detection for DirectiveStreamingParser
StevenTCramer Jun 16, 2025
cc1a4df
Add test for `xml code block scenario
StevenTCramer Jun 16, 2025
5ef1863
Fix log message parsing inside code blocks within tool parameters
StevenTCramer Jun 16, 2025
b879dd2
Fix DirectiveStreamingParser to prevent processing nested XML tags as…
StevenTCramer Jun 16, 2025
e7289bd
refactor: extract repeated code block detection logic into method
StevenTCramer Jun 16, 2025
d18e110
refactor: extract duplicated insideToolParameter logic into helper me…
StevenTCramer Jun 16, 2025
7471bd5
Refine type for activeHandler in DirectiveStreamingParser
StevenTCramer Jun 16, 2025
37dddeb
refactor: improve type safety in DirectiveStreamingParser
StevenTCramer Jun 16, 2025
323d647
Remove temporary test file debug-test.js
StevenTCramer Jun 16, 2025
7d880f1
Remove any type assertions in DirectiveStreamingParser.ts by introduc…
StevenTCramer Jun 16, 2025
36c993b
Fix type assertions and formatting in DirectiveStreamingParser.ts
StevenTCramer Jun 16, 2025
bcf71c5
Refactor: Replace 'any' with 'ToolName' in message parsing files
StevenTCramer Jun 17, 2025
946cc0c
remove old parseAssistantMessage stuff
StevenTCramer Jun 17, 2025
62369d4
Add message parsing system documentation
StevenTCramer Jun 17, 2025
f703132
refactor: improve type safety for fetch_instructions tool
StevenTCramer Jun 19, 2025
70d8e76
Merge branch 'main' into Cramer/2025-06-14/Logging
StevenTCramer Jun 20, 2025
33a0a20
Convert readFileTool.spec.ts from Jest to Vitest
StevenTCramer Jun 20, 2025
922e1e1
Fixed: pnpm check-types errors
StevenTCramer Jun 20, 2025
6291568
Merge branch 'main' into Cramer/2025-06-14/Logging
StevenTCramer Jun 20, 2025
003d77d
remove temporary test
StevenTCramer Jun 20, 2025
49e8ec3
fix: resolve vitest test failures and update snapshots
StevenTCramer Jun 21, 2025
eee32e3
Fix TypeScript errors in readFileTool.spec.ts
StevenTCramer Jun 21, 2025
3ceb0ff
Fix Windows cross-platform path compatibility in readFileTool tests
StevenTCramer Jun 21, 2025
3620246
Fix timeout issue in custom-system-prompt test
StevenTCramer Jun 21, 2025
77d2c4f
Fix Windows path normalization in readFileTool test
StevenTCramer Jun 21, 2025
0fb5bf3
Merge branch 'main' into Cramer/2025-06-14/Logging
StevenTCramer Jun 21, 2025
e192d14
remove duplicate args
StevenTCramer Jun 21, 2025
875d33a
Update comment to new terminology
StevenTCramer Jun 21, 2025
1c00a24
remove junk.txt
StevenTCramer Jun 21, 2025
1b7272d
Revert apps directory changes back to main branch state
StevenTCramer Jun 21, 2025
bed08af
Revert locales directory changes back to main branch state
StevenTCramer Jun 21, 2025
2e67b0a
Revert src/services/mcp/McpHub.ts back to main branch state
StevenTCramer Jun 21, 2025
deda793
Restore apps/vscode-e2e/src/types/global.d.ts to needed version
StevenTCramer Jun 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/vscode-e2e/src/types/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { RooCodeAPI } from "@roo-code/types"

declare global {
// eslint-disable-next-line no-var
var api: RooCodeAPI
}

Expand Down
4 changes: 2 additions & 2 deletions apps/web-roo-code/src/components/homepage/features.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function Features() {
y: 0,
transition: {
duration: 0.6,
ease: [0.21, 0.45, 0.27, 0.9],
ease: [0.21, 0.45, 0.27, 0.9] as const,
},
},
}
Expand All @@ -100,7 +100,7 @@ export function Features() {
opacity: 1,
transition: {
duration: 1.2,
ease: "easeOut",
ease: "easeOut" as const,
},
},
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function InstallSection({ downloads }: InstallSectionProps) {
opacity: 1,
transition: {
duration: 1.2,
ease: "easeOut",
ease: [0.25, 0.46, 0.45, 0.94] as const,
},
},
}
Expand Down
4 changes: 2 additions & 2 deletions apps/web-roo-code/src/components/homepage/testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function Testimonials() {
y: 0,
transition: {
duration: 0.6,
ease: [0.21, 0.45, 0.27, 0.9],
ease: [0.21, 0.45, 0.27, 0.9] as const,
},
},
}
Expand All @@ -82,7 +82,7 @@ export function Testimonials() {
opacity: 1,
transition: {
duration: 1.2,
ease: "easeOut",
ease: [0.25, 0.46, 0.45, 0.94] as const,
},
},
}
Expand Down
Loading