mirror of
https://github.com/thecyberlearn/quantumtaskai-caprover.git
synced 2026-08-18 11:52:56 +00:00
BREAKING CHANGES: - Remove complex security middleware, validators, and cache utils - Replace 430-line CLAUDE.md with 156-line simplified version - Remove 5 complex CapRover optimization docs (1,000+ lines) - Add simplified alternatives: * simple_settings.py - Basic Django config * simple_services.py - No-cache agent management * requirements-simple.txt - 10 vs 24 dependencies * Dockerfile.simple - Streamlined container * README-SIMPLE.md - Focused deployment guide RATIONALE: - Original was enterprise-grade (Redis, CSP, security monitoring) - New version focuses on core CapRover deployment needs - 75% reduction in documentation complexity - Removed: Redis, rate limiting, security scanning, rollback systems - Kept: Basic Django, agents, auth, payments, static files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
970 B
970 B
Simple Agent Creation Guide
Quick Agent Creation
- Create JSON file in
agents/configs/agents/your-agent-name.json - Add basic config:
{
"name": "Your Agent Name",
"description": "What your agent does",
"category": "productivity",
"price": 5,
"webhook_url": "https://your-webhook-endpoint.com",
"form_schema": {
"fields": [
{
"name": "input",
"type": "text",
"label": "Your Input",
"required": true
}
]
}
}
- Restart server - Agent appears automatically
Available Categories
Edit agents/configs/categories/categories.json:
productivity- Work toolscontent- Content creationanalysis- Data analysiscommunication- Communication tools
Field Types
text- Single line texttextarea- Multi-line textnumber- Numeric inputemail- Email inputfile- File upload
That's it! Your agent will appear in the marketplace.