diff --git a/CLAUDE.md b/CLAUDE.md index a697053..ea26d42 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -605,4 +605,4 @@ curl http://localhost:8000/health/ Always run `python manage.py check_db` before making database-related changes to ensure proper configuration. --- -Last updated: 2025-07-28 15:30:00 +Last updated: Last updated: 2025-07-28 20:06:47 diff --git a/docs_update_summary.txt b/docs_update_summary.txt index 7b1f5fe..610b9c9 100644 --- a/docs_update_summary.txt +++ b/docs_update_summary.txt @@ -1,29 +1,45 @@ === Documentation Auto-Update Summary === -Update Date: 2025-07-27 17:53:31 +Update Date: 2025-07-28 20:06:47 Recent Commits: + - 9e6ec90 🚀 Implement simplified workflows system with shared components + - 43efa46 📚 Auto-update documentation and finalize deployment control - ffb4292 🔒 Implement comprehensive deployment control system - - 87397ac 🤖 Add specialized subagents and auto-documentation system - - fa38fbd 🎨 Toast standardization and dynamic pricing - safe approach -Deployment Changes: - - .railway.env.example - - railway.json - - railway.staging.json +Agents Changes: + - workflows/config/agents.py + - workflows/models.py + - workflows/templates/workflows/agent-template-starter.html + - workflows/templates/workflows/components/agent_header.html + - workflows/templates/workflows/components/quick_agents_panel.html + +Core Changes: + - netcop_hub/settings.py + - netcop_hub/urls.py + - wallet/urls.py + - wallet/views.py + - workflows/urls.py Documentation Changes: - - .github/PULL_REQUEST_TEMPLATE.md - CLAUDE.md - - DEVELOPMENT_WORKFLOW.md - - docs/deployment/deployment-checklist.md - - docs/deployment/deployment-control-guide.md + - social_ads_generator/n8n_workflows/README_Optimized.md + +Frontend Changes: + - social_ads.html + - social_ads_generator/n8n_workflows/Social_Ads_Optimized.json + - social_ads_generator/templates/social_ads_generator/detail.html + - static/js/social-ads.js + - static/js/workflows-core.js Backend Changes: - - docs_update_summary.txt - - scripts/setup_branch_protection.sh + - workflows/__init__.py + - workflows/admin.py + - workflows/apps.py + - workflows/config/__init__.py + - workflows/migrations/0001_initial.py Updated Documentation Files: - - /home/amit/Desktop/quantum_ai/CLAUDE.md - - /home/amit/Desktop/quantum_ai/docs/deployment/railway-deployment.md + - /home/amit/projects/quantum_ai_v2/CLAUDE.md + - /home/amit/projects/quantum_ai_v2/docs/development/agent-creation.md === End Summary === \ No newline at end of file diff --git a/workflows/config/agents.py b/workflows/config/agents.py index 4c2ce49..4d63831 100644 --- a/workflows/config/agents.py +++ b/workflows/config/agents.py @@ -13,15 +13,6 @@ AGENT_CONFIGS = { 'webhook_url': 'http://localhost:5678/webhook/2dc234d8-7217-454a-83e9-81afe5b4fe2d', }, - 'data-analyzer': { - 'name': 'Data Analyzer', - 'description': 'Upload and analyze data files with AI-powered insights and visualizations', - 'category': 'analytics', - 'price': 3.0, - 'icon': '📊', - 'webhook_url': 'http://localhost:5678/webhook/data-analyzer-webhook-id', - }, - 'job-posting-generator': { 'name': 'Job Posting Generator', 'description': 'Create professional job postings that attract top talent', @@ -47,6 +38,14 @@ AGENT_CONFIGS = { 'price': 1.0, 'icon': '🌤️', 'webhook_url': 'http://localhost:5678/webhook/weather-webhook-id', + }, + 'template-demo': { + 'name': 'Template Demo', + 'description': 'Demo of the fixed agent template starter with all enhancements', + 'category': 'demo', + 'price': 0.5, + 'icon': '🎯', + 'webhook_url': 'http://localhost:5678/webhook/template-demo', } } diff --git a/workflows/templates/workflows/agent-template-starter.html b/workflows/templates/workflows/agent-template-starter.html index bf9ec07..8b06439 100644 --- a/workflows/templates/workflows/agent-template-starter.html +++ b/workflows/templates/workflows/agent-template-starter.html @@ -12,7 +12,7 @@ REPLACE THE FOLLOWING: 5. Agent-specific JavaScript (optional) KEEP THE FOLLOWING: -- All {% include %} statements for shared components +- All include statements for shared components - Basic template structure and CSS links - Processing and results components #} @@ -21,21 +21,322 @@ KEEP THE FOLLOWING: {% block extra_css %} -{# Add agent-specific CSS here if needed #} {% endblock %} {% block content %} - -{% include "workflows/components/agent_header.html" with agent_title=agent_config.name agent_subtitle=agent_config.description %} + - -{% include "workflows/components/quick_agents_panel.html" %} +