-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commands
Complete list of all Agentwise commands and their usage.
Creates a new project with intelligent agent selection.
Example:
/create "e-commerce platform with React frontend, Node.js backend, and PostgreSQL database"
Options:
- Automatically selects appropriate agents
- Generates comprehensive project specification
- Creates project structure in
workspace/
Lists all existing projects and allows selection.
Example:
/projects
# Output:
1. todo-app (Active)
2. e-commerce-platform
3. social-media-app
Select project number: 2
Adds a feature to the currently active project.
Example:
/task "add user authentication with JWT tokens"
Creates a new custom agent with specified expertise.
Example:
/generate-agent "aws-deployment-specialist"
Lists all available agents and their status.
Output:
Available Agents:
β
Frontend Specialist - Ready
β
Backend Specialist - Ready
β
Database Specialist - Ready
β
DevOps Specialist - Ready
β
Testing Specialist - Ready
β
Designer Specialist - Ready
β
Research Agent - Ready
β
Custom: AWS Specialist - Ready
Imports an existing project into Agentwise.
Example:
/init-import /Users/username/my-existing-project
Copies and integrates code from one project to another.
Example:
/task-import ../old-project/auth ./current-project
Imports designs from Figma for implementation.
Example:
/figma https://www.figma.com/file/abc123/my-design
Uploads documents or files for processing.
Example:
/upload requirements.pdf
Clones and customizes an existing website.
Example:
/clone-website https://example.com
Opens the real-time monitoring dashboard.
Features:
- Agent status tracking
- Token usage graphs
- Task progress
- Error monitoring
Shows current system status.
Output:
System Status:
- Agents: 7/7 operational
- Active Tasks: 3
- Token Usage: 45,230 (35% optimized)
- Projects: 5
- Uptime: 2h 34m
Configures Ollama for local model support.
Configures LM Studio integration.
Lists available local models.
Sets up smart model routing for optimization.
Opens the local documentation hub.
Shows help for a specific command.
Example:
/help create
# Shows detailed help for the /create command
Performs security analysis on the current project.
Output:
Security Review:
β
No hardcoded secrets found
β
Dependencies up to date
β οΈ 2 medium vulnerabilities in dependencies
β
Authentication properly implemented
β
Input validation in place
Shortcut | Full Command | Description |
---|---|---|
/c |
/create |
Create new project |
/t |
/task |
Add task to project |
/p |
/projects |
List projects |
/m |
/monitor |
Open monitoring |
/s |
/status |
Show status |
Provides detailed output for commands.
/create "todo app" --verbose
Shows what would happen without executing.
/task "add feature" --dry-run
Forces execution even with warnings.
/init-import ./project --force
Specifies which agents to use.
/create "app" --agents=frontend,backend
Sets custom timeout for operations.
/task "complex feature" --timeout=600
Sets task priority (low, medium, high, critical).
/task "bug fix" --priority=critical
You can chain multiple commands using &&
:
/create "new app" && /task "add auth" && /monitor
Access command history with arrow keys or:
/history
# Shows last 20 commands
/history 50
# Shows last 50 commands
/repeat 3
# Repeats command #3 from history
Create custom commands in .claude/commands/
:
// .claude/commands/deploy.js
module.exports = {
name: 'deploy',
description: 'Deploy to production',
execute: async (args) => {
// Custom deployment logic
}
}
/dev:start # Start development environment
/dev:test # Run tests
/dev:lint # Run linting
/prod:deploy # Deploy to production
/prod:backup # Create backup
/prod:rollback # Rollback deployment
/doctor # Run system diagnostics
/clean # Clean temporary files
/reset # Reset system state
/repair # Attempt auto-repair
- Use
/help
for general help - Use
/help <command>
for specific command help - Check documentation at https://agentwise-docs.vercel.app
- Ask in Discussions
Last updated: January 2025
Support
- Discord: @vibecodingwithphil
- GitHub: @VibeCodingWithPhil