/agentful
The main conversational interface for agentful. Just talk naturally - no need to remember specific commands or syntax.
Usage
```bash /agentful [your request in plain English] ```
Examples
# Start development
/agentful "Add user authentication"
# Check progress
/agentful "How's it going?"
# Fix bugs
/agentful "The login button isn't working"
# Get status
/agentful "What's left to build?"
# Continue work
/agentful "Keep going"What It Understands
Status & Progress
- "How's it going?"
- "What's the status?"
- "What's left?"
- "Progress check"
- "What are you working on?"
Feature Development
- "Add [feature]"
- "Build [feature]"
- "Create [feature]"
- "Implement [feature]"
Example: "Add user authentication with JWT"
Bug Fixes
- "Fix [issue]"
- "The [component] is broken"
- "[feature] isn't working"
Example: "Fix the login redirect bug"
Questions
- "What are we building?"
- "How does [feature] work?"
- "Tech stack?"
- "Architecture?"
Actions
- "Continue" - Resume development
- "Stop" - Pause development
- "Run tests" - Execute validation
How It Works
- Understands Intent - Classifies what you want (status, feature, bugfix, etc.)
- Checks Context - Reads product spec, state, and conversation history
- Routes to Specialist - Delegates to appropriate agent (orchestrator, tester, etc.)
- Provides Updates - Shows progress and asks questions when needed
Example Conversations
Feature Development
You: /agentful "Add user profiles"
Agent: Got it! Starting user profiles development...
[Analyzing project structure...]
[Delegating to architect agent...]
Agent: User profiles feature plan created:
• User profile data model
• Profile CRUD API
• Profile settings page
Starting implementation...Status Check
You: /agentful "How's it going?"
Agent: Overall Progress: ████████████░░░░ 45%
Features:
✅ Authentication Backend 100%
🔄 Authentication Frontend 45%
⏸ User Profiles 0%
Currently working on: Login page component
Want to continue or check something else?Bug Fix
You: /agentful "The login button is broken"
Agent: Investigating login button issue...
[Analyzing LoginForm component...]
Found: Missing onClick handler
Fixing now...
Agent: Fixed! Login button now triggers authentication.
Tests passing. ✅Integration with Commands
/agentful automatically routes to specialized commands:
| Your Input | Routes To |
|---|---|
| "How's it going?" | /agentful-status |
| "Continue working" | /agentful-start |
| "What needs decisions?" | /agentful-decide |
| "Run tests" | /agentful-validate |
| "Add [feature]" | Orchestrator agent |
Conversation History
agentful remembers your conversation:
- Last 100 messages
- Context across sessions
- Your preferences and project knowledge
Tips
- Be specific for features: "Add OAuth login with GitHub"
- Describe bugs clearly: "Login redirects to wrong page after auth"
- Use natural language - no need for technical jargon
- Ask questions - agentful knows your project inside and out
Related Commands
/agentful-start- Start autonomous development/agentful-status- Check detailed progress/agentful-decide- Answer pending decisions/agentful-validate- Run quality checks