mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 07:52:58 +00:00
- Create AGENT_CREATION_GUIDE.md with complete step-by-step instructions - Add agent_template_prototype.html with full CSS framework and JavaScript utilities - Implement Email Writer agent as demonstration of template system - Update CLAUDE.md with agent creation workflow and template guidance - Include Django patterns, form handling, status polling, and marketplace integration - Provide reusable components: wallet card, processing status, quick access panel - Ensure responsive design, accessibility, and consistent user experience 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
230 B
Python
9 lines
230 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'email_writer'
|
|
|
|
urlpatterns = [
|
|
path('', views.email_writer_detail, name='detail'),
|
|
path('status/<int:request_id>/', views.email_writer_status, name='status'),
|
|
] |