Commit Graph

2094 Commits

Author SHA1 Message Date
github-actions[bot]
e7728d8189 changeset version bump 2025-01-25 04:48:18 +00:00
Matt Rubens
2dfe2c5797 Merge pull request #552 from RooVetGit/fix_multiple_terminals_created
Fix multiple terminals created
2025-01-24 23:47:21 -05:00
Matt Rubens
68712ea0f6 Changeset 2025-01-24 23:40:49 -05:00
Evan
674216cc8a reuse existing non-busy terminals 2025-01-24 23:39:29 -05:00
Matt Rubens
bf49b3ea61 Merge pull request #550 from RooVetGit/fix_switch_mode_command
Do a more complete mode switch from switch_mode command
2025-01-24 23:30:06 -05:00
Matt Rubens
8c929ba16a Do a more complete mode switch from switch_mode command 2025-01-24 23:04:57 -05:00
~PV
e90d46ef1b indent collapsed settings 2025-01-24 11:26:39 -08:00
Matt Rubens
f5021993ea Merge pull request #536 from RooVetGit/changeset-release/main
Changeset version bump
2025-01-24 14:15:44 -05:00
Matt Rubens
8c0199f45c Update CHANGELOG.md 2025-01-24 14:13:17 -05:00
github-actions[bot]
1f902ec31b changeset version bump 2025-01-24 19:04:37 +00:00
Matt Rubens
91b82f8c50 Merge pull request #540 from RooVetGit/v3.3
V3.3
2025-01-24 14:03:37 -05:00
Matt Rubens
e2241286f3 Fix test 2025-01-24 13:39:31 -05:00
Matt Rubens
d4110dca8e Docs 2025-01-24 13:25:47 -05:00
Matt Rubens
cda44d52d4 Don't allow setting a retry period below 5 seconds, default to 10 2025-01-24 12:59:49 -05:00
Matt Rubens
9279904366 v3.3 changeset 2025-01-24 12:57:30 -05:00
Matt Rubens
fd7034c3d3 Merge pull request #537 from samhvw8/fix/model-name-524
fix #524
2025-01-24 12:57:15 -05:00
sam hoang
4e8f7ca396 fix #524 2025-01-25 00:54:09 +07:00
Matt Rubens
7c41a9cbf8 Merge pull request #526 from RooVetGit/switch_mode_tool
Add a tool to switch modes
2025-01-24 12:50:57 -05:00
Matt Rubens
9464a1bae9 Merge pull request #523 from RooVetGit/allow_architect_mode_to_write_markdown
Allow architect and ask modes to write md files
2025-01-24 12:50:08 -05:00
Matt Rubens
5f8a8887fb Validation fixes 2025-01-24 12:46:10 -05:00
Matt Rubens
a83d8dacbf Merge pull request #534 from samhvw8/feat/code-action-user-prompt
feat: user prompt in code action
2025-01-24 10:23:37 -05:00
sam hoang
a7ae6c46d1 feat: user prompt in code action 2025-01-24 22:19:10 +07:00
Matt Rubens
b8fd389e07 Merge pull request #392 from Lunchb0ne/aws-profile-support
Add support for using AWS Profile
2025-01-24 09:14:40 -05:00
Matt Rubens
0cfc095544 Merge remote-tracking branch 'origin/main' into aws-profile-support 2025-01-24 09:10:11 -05:00
Matt Rubens
d1754cace0 Add a tool to switch modes 2025-01-24 03:05:03 -05:00
Matt Rubens
569e104bf2 Updated role definition for ask 2025-01-24 01:46:46 -05:00
Matt Rubens
ba69cd756f Cleanup 2025-01-24 01:32:48 -05:00
Matt Rubens
980189460d Update system prompt 2025-01-24 00:39:45 -05:00
Matt Rubens
6c3c216034 Add test to confirm this works with custom modes 2025-01-24 00:30:24 -05:00
Matt Rubens
7413d6494e Let ask mode write markdown too 2025-01-23 23:48:38 -05:00
Matt Rubens
4e77fb93bb Allow architect mode to write md files 2025-01-23 23:41:47 -05:00
Matt Rubens
0a32e24c6d Merge pull request #329 from samhvw8/feat/roo-cline-code-action
New Feature code action
2025-01-23 17:19:45 -08:00
Matt Rubens
030575aaf9 Merge pull request #514 from RooVetGit/changeset-release/main
Changeset version bump
2025-01-23 17:01:14 -08:00
Matt Rubens
47635fd640 Update CHANGELOG.md 2025-01-23 16:53:12 -08:00
github-actions[bot]
045dd13675 changeset version bump 2025-01-24 00:32:54 +00:00
Matt Rubens
5cd28abff7 Merge pull request #521 from RooVetGit/v3.2.8
v3.2.8
2025-01-23 16:32:02 -08:00
Matt Rubens
a18843bdfd v3.2.8 2025-01-23 16:24:07 -08:00
Matt Rubens
3257dffa56 Review feedback 2025-01-23 15:56:24 -08:00
Matt Rubens
039590d2c3 Merge pull request #520 from Premshay/feat/add-llama-model
feat(api): add Llama 3.3 70B Instruct to AWS Bedrock model options
2025-01-23 15:16:53 -08:00
Matt Rubens
45aa069f39 Merge pull request #501 from punkpeye/add-polling
feat: poll usage
2025-01-23 15:16:10 -08:00
root
d93a7a74d5 feat(api): add Llama 3.3 70B Instruct to AWS Bedrock model options 2025-01-23 21:12:59 +02:00
sam hoang
f86e96d157 refactor: separate mode and support prompts
- Rename customPrompts to customModePrompts for mode-specific prompts
- Add new customSupportPrompts type for support action prompts
- Update types to be more specific (CustomModePrompts and CustomSupportPrompts)
- Fix all related tests and component implementations
2025-01-24 01:46:33 +07:00
sam hoang
085d42873c refactor: generalize prompt enhancement into single completion handler
- Rename enhance-prompt.ts to single-completion-handler.ts for better clarity
- Refactor enhancement logic to be more generic and reusable
- Update prompt template handling to use template literals
- Adjust tests and imports accordingly
2025-01-24 01:14:48 +07:00
sam hoang
149e86ed0a fix comment on pr 2025-01-24 00:51:35 +07:00
Matt Rubens
40c0457b3a Merge pull request #518 from samhvw8/revert-onChange-onInput
Revert onChange back to onInput
2025-01-23 09:48:01 -08:00
sam hoang
55a5a97d8b refactor: consolidate code action and enhance prompts into unified support prompts system
- Rename codeActionPrompt to supportPrompt for better clarity
- Move enhance prompt functionality into support prompts system
- Add ENHANCE tab alongside other support prompt types
- Update UI to show enhancement configuration in ENHANCE tab
- Update tests to reflect new unified structure

This change simplifies the prompt system by treating enhancement as another type of support prompt rather than a separate system.
2025-01-24 00:46:20 +07:00
sam hoang
22907a0578 refactor: consolidate prompt functionality into support-prompt module
- Move code action prompts from core/prompts to shared/support-prompt
- Migrate enhance prompt functionality from modes to support-prompt
- Add UI for managing code action prompts in PromptsView
- Update types and interfaces for better prompt management
2025-01-24 00:46:19 +07:00
sam hoang
7845791720 feat(code-actions): add user input and customizable templates
Add ability to provide custom input when using code actions
Make code action templates customizable and resettable
Refactor code action handling for better maintainability
Add state management for utility prompts
2025-01-24 00:46:19 +07:00
sam hoang
1b26f91ea7 refactor(code-actions): implement parameter object pattern for prompt generation
- Extract prompt templates into constants
- Add createPrompt utility for template string handling
- Consolidate code action handling in ClineProvider
- Update tests to use new parameter object pattern
2025-01-24 00:46:19 +07:00
sam hoang
02a8eb96f1 feat: integrate code actions into extension activation 2025-01-24 00:46:19 +07:00