This document provides comprehensive information about experimental AI agent support in DevAIFlow, including GitHub Copilot, Cursor, Windsurf, Aider, and Continue.
DevAIFlow supports multiple AI coding assistants through a unified agent interface. While Claude Code is fully tested and production-ready, GitHub Copilot, Cursor, Windsurf, Aider, and Continue are currently experimental with known limitations.
| Agent | Status | Test Coverage | Session Capture | Session Resume | Initial Prompt |
|---|---|---|---|---|---|
| Claude Code | ✅ Fully Supported | 100% | ✅ Full Support | ✅ Full Support | ✅ Supported |
| Ollama | ✅ Supported | 100% | ✅ Full Support | ✅ Full Support | ✅ Supported |
| GitHub Copilot | 100% | ❌ Not Supported | |||
| Cursor | 100% | ❌ Not Supported | |||
| Windsurf | 100% | ❌ Not Supported | |||
| Aider | 100% | ||||
| Continue | 100% | ❌ Not Supported |
| Feature | Claude Code | GitHub Copilot | Cursor | Windsurf |
|---|---|---|---|---|
| Session File Format | JSONL | VS Code workspace | Cursor workspace | Windsurf workspace |
| Session ID | UUID-based | Workspace-based timestamp | Workspace-based timestamp | Workspace-based timestamp |
| Session Discovery | File monitoring | N/A | N/A | N/A |
| Session Resume | UUID resume | Workspace reopen | Workspace reopen | Workspace reopen |
| Multi-Session Support | ✅ Yes | ❌ No | ❌ No | ❌ No |
| Feature | Claude Code | GitHub Copilot | Cursor | Windsurf |
|---|---|---|---|---|
| Message Counting | ✅ Accurate | ❌ Not Available | ❌ Not Available | ❌ Not Available |
| Conversation Export | ✅ Supported | ❌ Not Available | ❌ Not Available | ❌ Not Available |
| Conversation Import | ✅ Supported | ❌ Not Available | ❌ Not Available | ❌ Not Available |
| Initial Prompt | ✅ CLI Support | ❌ Manual Only | ❌ Manual Only | ❌ Manual Only |
| Feature | Claude Code | GitHub Copilot | Cursor | Windsurf |
|---|---|---|---|---|
| CLI Launch | ✅ claude |
✅ code |
✅ cursor |
✅ windsurf |
| Time Tracking | ✅ Accurate | |||
| Session Notes | ✅ Supported | ✅ Supported | ✅ Supported | ✅ Supported |
| JIRA Integration | ✅ Full Support | ✅ Full Support | ✅ Full Support | ✅ Full Support |
Architecture: VS Code extension-based, not a standalone CLI agent
Limitations:
-
No Session ID Detection
- GitHub Copilot doesn't create discrete session files
- DevAIFlow generates workspace-based IDs using timestamps
- Cannot differentiate between multiple sessions in the same workspace
-
No Initial Prompt Support
daf openlaunches VS Code but cannot send initial prompts via CLI- Users must manually paste prompts into Copilot Chat interface
- Breaks the automated "initial context" workflow
-
No Session Resume
daf openwith existing session just reopens VS Code- VS Code restores previous workspace state but doesn't resume specific conversation
- No way to programmatically resume a specific Copilot chat thread
-
No Message Counting
- Copilot conversation history stored in VS Code's internal database
- No public API to count messages or export conversations
get_session_message_count()always returns 0
-
No Conversation Export/Import
- Cannot export Copilot chat history for team handoff
- Session sharing requires sharing entire VS Code workspace
When to Use GitHub Copilot:
- ✅ When you already use VS Code as your primary editor
- ✅ For code completion and inline suggestions
- ✅ When GitHub Copilot subscription is already available
- ❌ For automated session workflows requiring initial prompts
- ❌ For precise session tracking and time accounting
- ❌ For team collaboration requiring session export/import
Architecture: AI-first editor built on VS Code with integrated chat and code generation
Limitations:
-
Workspace-Based Sessions Only
- Cursor manages sessions via workspace storage directories
- Cannot create multiple discrete sessions for the same workspace
- Session ID is timestamp-based, not UUID-based
-
No Initial Prompt Support
daf openlaunches Cursor but cannot send initial prompts- Users must manually use Cursor's AI Chat or Cascade
- Automated context loading not supported
-
Limited Session Detection
- Session files stored in
~/.cursor/User/workspaceStorage/ - Structure is not publicly documented
- DevAIFlow scans for
workspace.jsonandstate.vscdbfiles
- Session files stored in
-
No Message Counting
- AI chat history in workspace state database (SQLite)
- Internal schema not documented
get_session_message_count()always returns 0
-
No Direct Session Resume
daf openreopens workspace, but specific chat thread not addressable- Cursor auto-restores AI chat history
- Cannot programmatically resume specific conversation
When to Use Cursor:
- ✅ When you prefer Cursor's AI-first editing experience
- ✅ For Cascade (multi-step agentic workflows)
- ✅ When Cursor subscription is available
- ✅ For individual developer workflows
- ❌ For automated session workflows
- ❌ For team collaboration requiring session export
- ❌ For precise time tracking per conversation
Architecture: Codeium's AI editor with advanced agentic coding (Cascade)
Limitations:
-
Workspace-Based Sessions Only
- Similar to Cursor, sessions tied to workspace storage
- Cannot have multiple discrete sessions per workspace
- Session IDs generated using timestamps
-
No Initial Prompt Support
daf openlaunches Windsurf but cannot send prompts- Users must manually interact with AI Chat or Cascade
- Automated workflows require manual intervention
-
Limited Session Detection
- Session files in
~/.windsurf/User/workspaceStorage/ - Internal format similar to VS Code but not documented
- DevAIFlow uses heuristic scanning
- Session files in
-
No Message Counting
- AI chat and Cascade history in workspace state
- Internal database schema not public
get_session_message_count()always returns 0
-
No Direct Session Resume
- Workspace reopen restores AI state but not specific conversation
- Cannot programmatically target a specific chat thread
- Users must manually navigate to conversation
When to Use Windsurf:
- ✅ When you want Codeium's agentic coding features
- ✅ For Cascade workflows (multi-step AI coding tasks)
- ✅ When Windsurf/Codeium subscription is available
- ✅ For individual developer workflows
- ❌ For automated initial prompt workflows
- ❌ For team session sharing
- ❌ For accurate conversation message tracking
Configure which AI agent to use in your DevAIFlow configuration:
# Via environment variable
export DAF_AGENT_BACKEND="github-copilot" # or "cursor" or "windsurf"
# Via config file (~/.daf-sessions/config.json)
{
"agent_backend": "github-copilot"
}Supported values:
"claude"- Claude Code (default, fully supported)"ollama"or"ollama-claude"- Ollama with Claude CLI (supported)"github-copilot"or"copilot"- GitHub Copilot (experimental)"cursor"- Cursor (experimental)"windsurf"- Windsurf (experimental)"aider"- Aider (experimental)"continue"- Continue (experimental)
For enterprise deployments, set agent_backend in enterprise.json to enforce company-wide AI agent:
{
"agent_backend": "claude",
"_comment": "All employees must use Claude Code for AI assistance"
}See Enterprise Guidelines for details.
macOS/Linux:
# Install VS Code CLI
# macOS (if not already in PATH)
sudo ln -s "/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code" /usr/local/bin/code
# Verify installation
code --versionWindows:
# Add VS Code to PATH during installation
# Or manually add: C:\Users\<username>\AppData\Local\Programs\Microsoft VS Code\bin
# Verify
code --versionError: "code: command not found"
Solution:
- Install VS Code: https://code.visualstudio.com/
- Ensure VS Code CLI is in PATH
- On macOS:
Command+Shift+P→ "Shell Command: Install 'code' command in PATH"
Error: "GitHub Copilot extension not installed"
Solution:
- Open VS Code
- Install extension: https://marketplace.visualstudio.com/items?itemName=GitHub.copilot
- Sign in to GitHub
- Ensure Copilot subscription is active
Issue: Session not detected
Explanation:
- GitHub Copilot doesn't create discrete session files
- DevAIFlow generates workspace-based session IDs automatically
- This is expected behavior, not an error
Issue: Initial prompt not sent
Explanation:
- GitHub Copilot CLI doesn't support sending prompts programmatically
- After
daf openlaunches VS Code, manually:- Open Copilot Chat (Ctrl/Cmd + Shift + I)
- Paste the initial prompt
- Continue working
macOS:
# Install Cursor
brew install --cask cursor
# Or download from https://cursor.sh/
# Verify CLI
cursor --versionLinux:
# Download from https://cursor.sh/
# Extract and add to PATH
# Verify
cursor --versionWindows:
# Download from https://cursor.sh/
# Install and add to PATH
# Verify
cursor --versionError: "cursor: command not found"
Solution:
- Install Cursor: https://cursor.sh/
- Add cursor CLI to PATH
- On macOS: Cursor may install CLI automatically after first launch
- Verify with
which cursor
Error: "Cursor subscription required"
Explanation:
- Cursor AI features require subscription
- Sign up at https://cursor.sh/pricing
- Free tier available for limited usage
Issue: Session resume doesn't restore chat
Explanation:
- Cursor restores workspace state but not specific chat threads
- This is a platform limitation, not a DevAIFlow bug
- Manually navigate to previous conversation in Cursor
Issue: Cannot count messages
Explanation:
- Cursor's internal database schema is not public
- DevAIFlow cannot parse conversation history
- Use Cursor's built-in history viewer instead
macOS:
# Download from https://codeium.com/windsurf
# Install and drag to Applications
# Add CLI to PATH
sudo ln -s "/Applications/Windsurf.app/Contents/Resources/app/bin/windsurf" /usr/local/bin/windsurf
# Verify
windsurf --versionLinux:
# Download from https://codeium.com/windsurf
# Extract and add to PATH
# Verify
windsurf --versionWindows:
# Download from https://codeium.com/windsurf
# Install and add to PATH: C:\Users\<username>\AppData\Local\Programs\Windsurf\bin
# Verify
windsurf --versionError: "windsurf: command not found"
Solution:
- Install Windsurf: https://codeium.com/windsurf
- Add windsurf CLI to PATH
- On macOS: May need to manually symlink after installation
Error: "Codeium account required"
Explanation:
- Windsurf requires Codeium account
- Sign up at https://codeium.com/
- Free tier available
Issue: Cascade workflows not saved
Explanation:
- Cascade workflow history managed by Windsurf internally
- DevAIFlow tracks session but not internal Cascade state
- Use Windsurf's built-in Cascade history
Issue: Cannot resume specific Cascade
Explanation:
- Windsurf doesn't expose programmatic Cascade resume API
- Reopen workspace to see all previous Cascades
- Manually select which one to continue
When an experimental agent becomes stable:
-
Validation Requirements:
- ✅ 90%+ unit test pass rate
- ✅ Integration tests passing
- ✅ 5+ community validations
- ✅ Known limitations documented
- ✅ Troubleshooting guide complete
-
Promotion Process:
- Remove "
⚠️ EXPERIMENTAL" warnings from code - Update README.md support status
- Update this document's status table
- Announce in release notes
- Remove "
As of v0.2.0:
- ✅ Unit tests: 100% coverage (all 3 agents)
- ⏳ Integration tests: In progress
- ⏳ Community validations: 0/5 per agent
- ✅ Limitations documented
- ✅ Troubleshooting guides complete
Estimated timeline to stable: 2-4 weeks pending community feedback
Help us stabilize experimental agents by testing and reporting feedback!
- Install the agent (GitHub Copilot, Cursor, or Windsurf)
- Configure DevAIFlow:
daf config set-agent-backend github-copilot # or cursor/windsurf - Test basic workflow:
daf new test-session # Verify agent launches # Verify session tracking works # Test session resume
- Report results using our validation template
Please report your experience using this template in a GitHub issue:
Title: [Agent Validation] <GitHub Copilot|Cursor|Windsurf> - <Your OS>
Body:
## Environment
- OS: (macOS / Linux / Windows)
- Agent: (GitHub Copilot / Cursor / Windsurf)
- Agent Version:
- DevAIFlow Version:
- Python Version:
## Test Results
### Session Creation
- [ ] Agent launches successfully
- [ ] Session ID captured
- Notes:
### Session Resume
- [ ] Can resume session via `daf open`
- [ ] Workspace state restored
- Notes:
### Basic Workflow
- [ ] Can create JIRA ticket from session
- [ ] Time tracking works
- [ ] Session notes work
- Notes:
### Issues Encountered
(Describe any problems, errors, or unexpected behavior)
### Overall Assessment
- [ ] Ready for daily use
- [ ] Needs improvements (specify)
- [ ] Not recommended yet
### Additional Comments
(Any other feedback)-
Be Aware of Limitations:
- Read the limitations section for your agent
- Understand what features are not supported
- Plan workflows accordingly
-
Manual Initial Prompts:
daf openlaunches the editor- Manually paste initial context
- Bookmark JIRA ticket URL for reference
-
Session Tracking:
- DevAIFlow tracks session at workspace level
- Use
daf noteto document progress - Time tracking is approximate
-
Team Collaboration:
- Session export/import not supported
- Share code via git commits instead
- Document work in JIRA comments
For production workflows requiring:
- Automated initial prompts
- Accurate session tracking
- Session export/import
- Team collaboration
- Precise time accounting
→ Use Claude Code instead of experimental agents.
Experimental agents are best for individual developers who already use and prefer those specific editors.
Help improve experimental agent support:
Report Issues:
- GitHub Issues: https://github.com/itdove/devaiflow/issues
- Label:
experimental-agents
Contributing:
- Agent implementation:
devflow/agent/<agent>_agent.py - Tests:
tests/test_agent_interface.py - Documentation: This file
Discussion:
- For questions and discussions, open a GitHub Discussion
- Share your validation results and use cases
Architecture: Command-line AI pair programming tool with git-first approach
Limitations:
-
Chat History File Management
- Aider stores chat history in text files
- DevAIFlow creates separate files per session
- Session IDs are timestamp-based, not UUID-based
- Chat history must be explicitly saved/loaded
-
Limited Initial Prompt Support
daf opensaves initial prompt to file for reference- Users must manually paste prompt into Aider chat
- Cannot send prompts programmatically via CLI arguments
- Automated context loading requires manual intervention
-
Git-Based Workflow
- Every Aider edit creates a git commit
- Sessions tied to git branches
- Cannot track sessions independent of git
- Requires git repository to function
-
Approximate Message Counting
- Counts non-empty lines in chat history file
- Not true message count (includes context, commands)
get_session_message_count()returns approximate value
-
No Session File Discovery
- Aider doesn't create discrete session files like Claude Code
- DevAIFlow generates timestamp-based IDs
- Cannot automatically detect new sessions
- Session tracking relies on chat history files
When to Use Aider:
- ✅ When you prefer terminal-based workflows
- ✅ For git-first development with automatic commits
- ✅ When you want structured mode planning features
- ✅ For working with local LLMs via Aider's model support
- ❌ For automated initial prompt workflows
- ❌ For session workflows independent of git
- ❌ For precise conversation message tracking
Architecture: VS Code/JetBrains extension with both IDE integration and separate CLI tool
Limitations:
-
VS Code-Based Sessions
- Continue runs as VS Code extension
- Sessions managed by VS Code workspace storage
- Cannot create discrete sessions independent of workspace
- Session IDs are timestamp-based
-
No Initial Prompt Support
daf openlaunches VS Code but cannot send prompts- Users must manually interact with Continue chat interface
- No CLI support for sending prompts to extension
- Automated context loading not supported
-
Limited Session Detection
- Session state stored in VS Code extension storage
- Internal format not publicly documented
- DevAIFlow uses workspace-based tracking
- Cannot detect or enumerate sessions
-
No Message Counting
- Chat history managed by extension's internal storage
- No public API to access conversation data
get_session_message_count()always returns 0- Cannot export or count messages
-
No Session Resume API
daf openreopens workspace- VS Code restores extension state automatically
- Cannot programmatically resume specific conversation
- Users must manually navigate to previous chat
When to Use Continue:
- ✅ When you already use VS Code or JetBrains IDEs
- ✅ For Continue's multiple interaction modes (Agent, Chat, Autocomplete, Edit)
- ✅ When you want Model Context Protocol (MCP) integration
- ✅ For working with multiple AI models in one interface
- ❌ For automated session workflows
- ❌ For session export/import and team collaboration
- ❌ For accurate conversation tracking
- ❌ For CLI-only workflows (requires IDE)