feat: agentic AI Assistant with cross-project support - #9
Merged
Conversation
Replaces the form-based AI Planner with a natural language AI Assistant powered by Claude tool use. Users describe what they want in plain text and the AI decides what to create, update, or delete across all projects. - Agentic tool-use loop: create/update/delete sprints, work items, projects - Cross-project support: loads all projects on open, can move items between projects - move_work_item tool handles the delete+recreate needed for cross-project moves - liveContext tracks mid-session creations so Claude can chain operations (e.g. create a project then immediately move items into it) - Single prompt UI replaces multi-field wizard Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
What changed
src/api/ai.ts— newexecuteAiCommandfunction with 8 tools:create_project,create_sprint,update_sprint,delete_sprintcreate_work_item,update_work_item,delete_work_itemmove_work_item— handles cross-project moves (delete from source, create in destination)liveContexttracks mid-session state so Claude can chain operations (create a project, then immediately move items into it)src/components/dialogs/AiAssistantDialog.tsx— new dialog:src/App.tsx— new AI-specific handlers for create/update/delete across projects, wired to the new dialogsrc/components/GlobalCreateButton.tsx— label updated to "✨ AI Assistant"Test plan
🤖 Generated with Claude Code