# ๐ ClaudeCraft
**Multi-Agent Development Framework for High-Quality, Secure Software Development with Claude AI**
*Transform your development workflow with AI-powered agents that ensure security, quality, and velocity at every step.*
[](https://www.npmjs.com/package/claudecraft)
[](https://pypi.org/project/claudecraft/)
[](https://github.com/stack-junkie/ClaudeCraft)
[](https://opensource.org/licenses/MIT)
[](docs/rules/security-rules.md)
[](docs/best-practices.md)
---
## ๐ฏ What is ClaudeCraft?
ClaudeCraft is a revolutionary **multi-agent development framework** that brings structure, security, and quality to AI-assisted software development. Instead of chaotic back-and-forth coding with AI, you get **specialized AI agents** working together in a coordinated workflow - each optimized for specific development tasks.
### ๐ Key Benefits
- **๐ก๏ธ Security-First**: OWASP Top 10 compliance built into every feature
- **๐ฏ Quality-Focused**: 80%+ test coverage, code reviews, performance monitoring
- **โก High Velocity**: Structured agent handoffs eliminate context loss
- **๐ Self-Documenting**: Comprehensive memory and decision tracking
- **๐ง Production-Ready**: GitHub Actions, deployment configs, monitoring included
- **๐ Easy Setup**: Get started in under 5 minutes
---
## ๐ฆ Installation
### Via npm (Recommended)
```bash
npm install -g claudecraft
claudecraft-init my-awesome-app react-python
```
### Via pip
```bash
pip install claudecraft
claudecraft-init my-awesome-app react-python
```
### Via GitHub Template
1. Click **"Use this template"** on [GitHub](https://github.com/stack-junkie/ClaudeCraft/generate)
2. Clone your new repository
3. Run `./setup-project.sh "my-app" react-python`
---
## ๐ค Meet Your Development Team
### **๐จโ๐ผ Planner Agent**
- Creates detailed Product Requirements Documents (PRDs)
- Breaks down complex features into implementable tasks
- Makes architectural decisions and manages project vision
- *Long-running sessions, rich context*
### **๐จโ๐ป Coder Agent**
- Implements single features with security and quality focus
- Follows established patterns and coding standards
- Creates comprehensive tests and documentation
- *Task-focused sessions, implementation expertise*
### **๐งช Tester Agent**
- Develops comprehensive test strategies
- Finds bugs and performance issues
- Validates security measures and edge cases
- *Verification-focused, quality assurance*
### **๐ Documenter Agent**
- Maintains user guides, API docs, and README files
- Updates documentation with every feature change
- Manages GitHub repository files and templates
- *Documentation expertise, user experience focus*
### **๐ Reviewer Agent**
- Conducts thorough code quality assessments
- Performs security audits and vulnerability scanning
- Provides improvement recommendations and best practices
- *Quality gates, security validation*
---
## โก Quick Start
### 1. Install ClaudeCraft
```bash
# Choose your preferred method:
npm install -g claudecraft # Node.js users
pip install claudecraft # Python users
# OR use GitHub template
```
### 2. Initialize Your Project
```bash
# Create new project with your preferred tech stack:
claudecraft-init "my-awesome-app" react-python # React + Python/FastAPI
claudecraft-init "my-awesome-app" react-node # React + Node.js/Express
claudecraft-init "my-awesome-app" react-only # React frontend only
```
### 3. Start Development with Claude
```bash
# Your first prompt to Claude (Claude Code, ChatGPT, etc.):
"Initialize project development with ClaudeCraft.
Create PRD for [your app idea] and begin feature implementation."
```
**That's it!** Your multi-agent development environment is ready. ๐
---
## ๐๏ธ What You Get Out of the Box
### **๐ Project Management**
- **PRD Template**: Comprehensive requirements documentation
- **Feature Tracking**: todo.md with prioritized development tasks
- **Memory System**: Persistent project knowledge and decisions
- **Bug Tracking**: Systematic issue management and resolution
### **๐ก๏ธ Security & Quality**
- **Security Rules**: OWASP Top 10 compliance built-in
- **Quality Gates**: Code review, testing, and performance standards
- **Agent Handoffs**: Structured transitions between development phases
- **CI/CD Pipelines**: GitHub Actions for testing and deployment
### **๐ง Development Tools**
- **Multiple Tech Stacks**: React+Python, React+Node.js, React-only
- **Environment Setup**: Automated dependency management
- **Testing Framework**: Unit, integration, and E2E testing
- **Documentation**: Auto-generated and maintained docs
### **๐ Project Structure**
```
your-project/
โโโ frontend/ # React/Next.js application
โโโ backend/ # Python/FastAPI or Node.js/Express
โโโ docs/ # Project documentation
โโโ workspace/ # ClaudeCraft agent workspace
โ โโโ prd.md # Product Requirements Document
โ โโโ todo.md # Feature implementation checklist
โ โโโ memory-bank.md # Project knowledge base
โ โโโ bug-tracker.md # Issue tracking
โ โโโ agent-instructions/ # AI agent guidance
โโโ .github/ # CI/CD workflows and templates
โโโ CLAUDE.md # AI agent context and rules
โโโ framework-workflow.md # Complete development workflow
```
---
## ๐ Framework Advantages
### **Traditional AI Development Problems**
โ Context loss between sessions
โ Inconsistent code quality
โ Security vulnerabilities
โ Poor documentation
โ No systematic testing
โ Chaotic development process
### **ClaudeCraft Solutions**
โ
**Persistent Memory**: All decisions and context preserved
โ
**Quality Gates**: Automated quality and security checks
โ
**Structured Workflow**: Clear agent roles and handoff procedures
โ
**Documentation-Driven**: Self-updating, comprehensive docs
โ
**Test-Driven Development**: Built-in testing at every level
โ
**Production-Ready**: Deployment and monitoring included
---
## ๐ฏ Supported Technology Stacks
### **React + Python/FastAPI** (Recommended)
- **Frontend**: React, Next.js, TypeScript, Tailwind CSS
- **Backend**: Python, FastAPI, SQLAlchemy, Alembic
- **Database**: PostgreSQL (production), SQLite (development)
- **Testing**: Jest, pytest, Playwright
- **Deployment**: Vercel + Railway
### **React + Node.js/Express**
- **Frontend**: React, Next.js, TypeScript, Tailwind CSS
- **Backend**: Node.js, Express, TypeScript
- **Database**: PostgreSQL, MongoDB
- **Testing**: Jest, Supertest, Playwright
- **Deployment**: Vercel + Railway
### **React Only**
- **Frontend**: React, Next.js, TypeScript, Tailwind CSS
- **Backend**: External APIs or serverless functions
- **Testing**: Jest, Playwright
- **Deployment**: Vercel, Netlify
---
## ๐ Real-World Example
```bash
# 1. Create project
claudecraft-init "task-manager" react-python
# 2. Start with Planner Agent (in Claude)
"Create PRD for a team task management app with user auth,
project boards, task assignment, and real-time collaboration."
# 3. Coder Agent implements features
"Implement user authentication with JWT tokens and role-based access control."
# 4. Tester Agent validates
"Create comprehensive test suite for authentication system including edge cases."
# 5. Documenter Agent updates docs
"Update API documentation and user guide for authentication features."
# 6. Reviewer Agent ensures quality
"Perform security audit and code quality review of authentication system."
# Result: Production-ready feature with documentation, tests, and security validation!
```
---
## ๐ Documentation
| Document | Purpose |
|----------|---------|
| [Setup Guide](docs/setup-guide.md) | Step-by-step setup and usage |
| [Agent Workflows](docs/agent-workflows.md) | How agents work together |
| [Best Practices](docs/best-practices.md) | Development guidelines |
| [Complete Workflow](framework-workflow.md) | Full development process |
| [Security Rules](docs/rules/security-rules.md) | Security requirements |
| [Handoff Procedures](docs/rules/handoff-rules.md) | Agent transition protocols |
---
## ๐ง Advanced Features
### **Agent Handoff System**
Structured transitions between development phases with complete context preservation.
### **Quality Metrics**
- Code coverage tracking
- Performance monitoring
- Security vulnerability scanning
- Technical debt assessment
### **Memory Management**
- Persistent project knowledge
- Architectural decision records
- Bug pattern recognition
- Success pattern replication
### **Integration Support**
- Crystal multi-session management
- CrewAI agent orchestration
- GitHub Actions CI/CD
- Monitoring and alerting
---
## ๐ Community & Support
- **GitHub**: [https://github.com/stack-junkie/ClaudeCraft](https://github.com/stack-junkie/ClaudeCraft)
- **Issues**: [Report bugs or request features](https://github.com/stack-junkie/ClaudeCraft/issues)
- **Discussions**: [Community discussions](https://github.com/stack-junkie/ClaudeCraft/discussions)
- **npm**: [https://www.npmjs.com/package/claudecraft](https://www.npmjs.com/package/claudecraft)
- **PyPI**: [https://pypi.org/project/claudecraft/](https://pypi.org/project/claudecraft/)
---
## ๐ค Contributing
ClaudeCraft follows its own multi-agent development principles:
1. **Planner Agent**: Review and plan improvements
2. **Coder Agent**: Implement changes with tests
3. **Tester Agent**: Validate all functionality
4. **Documenter Agent**: Update documentation
5. **Reviewer Agent**: Quality and security review
See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.
---
## ๐ License
MIT License - see [LICENSE](LICENSE) for details.
---
## โญ Why Choose ClaudeCraft?
> **"Finally, a development framework that brings order to AI-assisted development. The multi-agent approach eliminates the chaos and ensures every feature is secure, tested, and documented."**
- ๐ฏ **Structured Development**: Clear roles and responsibilities
- ๐ก๏ธ **Security Built-In**: OWASP compliance from day one
- ๐ **Quality Assured**: Comprehensive testing and code review
- ๐ **Self-Documenting**: Always up-to-date documentation
- โก **High Velocity**: Efficient agent handoffs
- ๐ง **Production-Ready**: Deployment and monitoring included
---
## ๐ Get Started Today
**Ready to transform your development workflow?**
1. **Install ClaudeCraft**: `npm install -g claudecraft` or `pip install claudecraft`
2. **Initialize your project**: `claudecraft-init "my-app" react-python`
3. **Start building** with structured, secure, quality-focused development
Join the revolution in AI-assisted software development! ๐
---
*Built by developers, for developers. Designed for quality, security, and velocity.*
Raw data
{
"_id": null,
"home_page": null,
"name": "claudecraft",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "ClaudeCraft Team <hello@claudecraft.dev>",
"keywords": "claude, ai, framework, development, multi-agent, security, quality, template, react, python, nodejs, automation, workflow",
"author": null,
"author_email": "ClaudeCraft Team <hello@claudecraft.dev>",
"download_url": "https://files.pythonhosted.org/packages/6d/c0/c8ff0d6d278e32a436b524d1b761b18f756fcb0fbebb2c3613a1c2feece6/claudecraft-1.0.2.tar.gz",
"platform": null,
"description": "# \ud83d\ude80 ClaudeCraft\r\n\r\n**Multi-Agent Development Framework for High-Quality, Secure Software Development with Claude AI**\r\n\r\n*Transform your development workflow with AI-powered agents that ensure security, quality, and velocity at every step.*\r\n\r\n[](https://www.npmjs.com/package/claudecraft)\r\n[](https://pypi.org/project/claudecraft/)\r\n[](https://github.com/stack-junkie/ClaudeCraft)\r\n[](https://opensource.org/licenses/MIT)\r\n[](docs/rules/security-rules.md)\r\n[](docs/best-practices.md)\r\n\r\n---\r\n\r\n## \ud83c\udfaf What is ClaudeCraft?\r\n\r\nClaudeCraft is a revolutionary **multi-agent development framework** that brings structure, security, and quality to AI-assisted software development. Instead of chaotic back-and-forth coding with AI, you get **specialized AI agents** working together in a coordinated workflow - each optimized for specific development tasks.\r\n\r\n### \ud83c\udfc6 Key Benefits\r\n\r\n- **\ud83d\udee1\ufe0f Security-First**: OWASP Top 10 compliance built into every feature\r\n- **\ud83c\udfaf Quality-Focused**: 80%+ test coverage, code reviews, performance monitoring\r\n- **\u26a1 High Velocity**: Structured agent handoffs eliminate context loss\r\n- **\ud83d\udcda Self-Documenting**: Comprehensive memory and decision tracking\r\n- **\ud83d\udd27 Production-Ready**: GitHub Actions, deployment configs, monitoring included\r\n- **\ud83d\ude80 Easy Setup**: Get started in under 5 minutes\r\n\r\n---\r\n\r\n## \ud83d\udce6 Installation\r\n\r\n### Via npm (Recommended)\r\n```bash\r\nnpm install -g claudecraft\r\nclaudecraft-init my-awesome-app react-python\r\n```\r\n\r\n### Via pip\r\n```bash\r\npip install claudecraft\r\nclaudecraft-init my-awesome-app react-python\r\n```\r\n\r\n### Via GitHub Template\r\n1. Click **\"Use this template\"** on [GitHub](https://github.com/stack-junkie/ClaudeCraft/generate)\r\n2. Clone your new repository\r\n3. Run `./setup-project.sh \"my-app\" react-python`\r\n\r\n---\r\n\r\n## \ud83e\udd16 Meet Your Development Team\r\n\r\n### **\ud83d\udc68\u200d\ud83d\udcbc Planner Agent**\r\n- Creates detailed Product Requirements Documents (PRDs)\r\n- Breaks down complex features into implementable tasks\r\n- Makes architectural decisions and manages project vision\r\n- *Long-running sessions, rich context*\r\n\r\n### **\ud83d\udc68\u200d\ud83d\udcbb Coder Agent**\r\n- Implements single features with security and quality focus\r\n- Follows established patterns and coding standards\r\n- Creates comprehensive tests and documentation\r\n- *Task-focused sessions, implementation expertise*\r\n\r\n### **\ud83e\uddea Tester Agent**\r\n- Develops comprehensive test strategies\r\n- Finds bugs and performance issues\r\n- Validates security measures and edge cases\r\n- *Verification-focused, quality assurance*\r\n\r\n### **\ud83d\udcdd Documenter Agent**\r\n- Maintains user guides, API docs, and README files\r\n- Updates documentation with every feature change\r\n- Manages GitHub repository files and templates\r\n- *Documentation expertise, user experience focus*\r\n\r\n### **\ud83d\udd0d Reviewer Agent**\r\n- Conducts thorough code quality assessments\r\n- Performs security audits and vulnerability scanning\r\n- Provides improvement recommendations and best practices\r\n- *Quality gates, security validation*\r\n\r\n---\r\n\r\n## \u26a1 Quick Start\r\n\r\n### 1. Install ClaudeCraft\r\n```bash\r\n# Choose your preferred method:\r\nnpm install -g claudecraft # Node.js users\r\npip install claudecraft # Python users\r\n# OR use GitHub template\r\n```\r\n\r\n### 2. Initialize Your Project\r\n```bash\r\n# Create new project with your preferred tech stack:\r\nclaudecraft-init \"my-awesome-app\" react-python # React + Python/FastAPI\r\nclaudecraft-init \"my-awesome-app\" react-node # React + Node.js/Express \r\nclaudecraft-init \"my-awesome-app\" react-only # React frontend only\r\n```\r\n\r\n### 3. Start Development with Claude\r\n```bash\r\n# Your first prompt to Claude (Claude Code, ChatGPT, etc.):\r\n\"Initialize project development with ClaudeCraft. \r\nCreate PRD for [your app idea] and begin feature implementation.\"\r\n```\r\n\r\n**That's it!** Your multi-agent development environment is ready. \ud83c\udf89\r\n\r\n---\r\n\r\n## \ud83c\udfd7\ufe0f What You Get Out of the Box\r\n\r\n### **\ud83d\udccb Project Management**\r\n- **PRD Template**: Comprehensive requirements documentation\r\n- **Feature Tracking**: todo.md with prioritized development tasks\r\n- **Memory System**: Persistent project knowledge and decisions\r\n- **Bug Tracking**: Systematic issue management and resolution\r\n\r\n### **\ud83d\udee1\ufe0f Security & Quality**\r\n- **Security Rules**: OWASP Top 10 compliance built-in\r\n- **Quality Gates**: Code review, testing, and performance standards\r\n- **Agent Handoffs**: Structured transitions between development phases\r\n- **CI/CD Pipelines**: GitHub Actions for testing and deployment\r\n\r\n### **\ud83d\udd27 Development Tools**\r\n- **Multiple Tech Stacks**: React+Python, React+Node.js, React-only\r\n- **Environment Setup**: Automated dependency management\r\n- **Testing Framework**: Unit, integration, and E2E testing\r\n- **Documentation**: Auto-generated and maintained docs\r\n\r\n### **\ud83d\udcc1 Project Structure**\r\n```\r\nyour-project/\r\n\u251c\u2500\u2500 frontend/ # React/Next.js application\r\n\u251c\u2500\u2500 backend/ # Python/FastAPI or Node.js/Express\r\n\u251c\u2500\u2500 docs/ # Project documentation\r\n\u251c\u2500\u2500 workspace/ # ClaudeCraft agent workspace\r\n\u2502 \u251c\u2500\u2500 prd.md # Product Requirements Document\r\n\u2502 \u251c\u2500\u2500 todo.md # Feature implementation checklist\r\n\u2502 \u251c\u2500\u2500 memory-bank.md # Project knowledge base\r\n\u2502 \u251c\u2500\u2500 bug-tracker.md # Issue tracking\r\n\u2502 \u2514\u2500\u2500 agent-instructions/ # AI agent guidance\r\n\u251c\u2500\u2500 .github/ # CI/CD workflows and templates\r\n\u251c\u2500\u2500 CLAUDE.md # AI agent context and rules\r\n\u2514\u2500\u2500 framework-workflow.md # Complete development workflow\r\n```\r\n\r\n---\r\n\r\n## \ud83c\udf1f Framework Advantages\r\n\r\n### **Traditional AI Development Problems**\r\n\u274c Context loss between sessions \r\n\u274c Inconsistent code quality \r\n\u274c Security vulnerabilities \r\n\u274c Poor documentation \r\n\u274c No systematic testing \r\n\u274c Chaotic development process \r\n\r\n### **ClaudeCraft Solutions**\r\n\u2705 **Persistent Memory**: All decisions and context preserved \r\n\u2705 **Quality Gates**: Automated quality and security checks \r\n\u2705 **Structured Workflow**: Clear agent roles and handoff procedures \r\n\u2705 **Documentation-Driven**: Self-updating, comprehensive docs \r\n\u2705 **Test-Driven Development**: Built-in testing at every level \r\n\u2705 **Production-Ready**: Deployment and monitoring included \r\n\r\n---\r\n\r\n## \ud83c\udfaf Supported Technology Stacks\r\n\r\n### **React + Python/FastAPI** (Recommended)\r\n- **Frontend**: React, Next.js, TypeScript, Tailwind CSS\r\n- **Backend**: Python, FastAPI, SQLAlchemy, Alembic\r\n- **Database**: PostgreSQL (production), SQLite (development)\r\n- **Testing**: Jest, pytest, Playwright\r\n- **Deployment**: Vercel + Railway\r\n\r\n### **React + Node.js/Express**\r\n- **Frontend**: React, Next.js, TypeScript, Tailwind CSS\r\n- **Backend**: Node.js, Express, TypeScript\r\n- **Database**: PostgreSQL, MongoDB\r\n- **Testing**: Jest, Supertest, Playwright\r\n- **Deployment**: Vercel + Railway\r\n\r\n### **React Only**\r\n- **Frontend**: React, Next.js, TypeScript, Tailwind CSS\r\n- **Backend**: External APIs or serverless functions\r\n- **Testing**: Jest, Playwright\r\n- **Deployment**: Vercel, Netlify\r\n\r\n---\r\n\r\n## \ud83d\ude80 Real-World Example\r\n\r\n```bash\r\n# 1. Create project\r\nclaudecraft-init \"task-manager\" react-python\r\n\r\n# 2. Start with Planner Agent (in Claude)\r\n\"Create PRD for a team task management app with user auth, \r\nproject boards, task assignment, and real-time collaboration.\"\r\n\r\n# 3. Coder Agent implements features\r\n\"Implement user authentication with JWT tokens and role-based access control.\"\r\n\r\n# 4. Tester Agent validates\r\n\"Create comprehensive test suite for authentication system including edge cases.\"\r\n\r\n# 5. Documenter Agent updates docs\r\n\"Update API documentation and user guide for authentication features.\"\r\n\r\n# 6. Reviewer Agent ensures quality\r\n\"Perform security audit and code quality review of authentication system.\"\r\n\r\n# Result: Production-ready feature with documentation, tests, and security validation!\r\n```\r\n\r\n---\r\n\r\n## \ud83d\udcda Documentation\r\n\r\n| Document | Purpose |\r\n|----------|---------|\r\n| [Setup Guide](docs/setup-guide.md) | Step-by-step setup and usage |\r\n| [Agent Workflows](docs/agent-workflows.md) | How agents work together |\r\n| [Best Practices](docs/best-practices.md) | Development guidelines |\r\n| [Complete Workflow](framework-workflow.md) | Full development process |\r\n| [Security Rules](docs/rules/security-rules.md) | Security requirements |\r\n| [Handoff Procedures](docs/rules/handoff-rules.md) | Agent transition protocols |\r\n\r\n---\r\n\r\n## \ud83d\udd27 Advanced Features\r\n\r\n### **Agent Handoff System**\r\nStructured transitions between development phases with complete context preservation.\r\n\r\n### **Quality Metrics**\r\n- Code coverage tracking\r\n- Performance monitoring \r\n- Security vulnerability scanning\r\n- Technical debt assessment\r\n\r\n### **Memory Management**\r\n- Persistent project knowledge\r\n- Architectural decision records\r\n- Bug pattern recognition\r\n- Success pattern replication\r\n\r\n### **Integration Support**\r\n- Crystal multi-session management\r\n- CrewAI agent orchestration\r\n- GitHub Actions CI/CD\r\n- Monitoring and alerting\r\n\r\n---\r\n\r\n## \ud83c\udf0d Community & Support\r\n\r\n- **GitHub**: [https://github.com/stack-junkie/ClaudeCraft](https://github.com/stack-junkie/ClaudeCraft)\r\n- **Issues**: [Report bugs or request features](https://github.com/stack-junkie/ClaudeCraft/issues)\r\n- **Discussions**: [Community discussions](https://github.com/stack-junkie/ClaudeCraft/discussions)\r\n- **npm**: [https://www.npmjs.com/package/claudecraft](https://www.npmjs.com/package/claudecraft)\r\n- **PyPI**: [https://pypi.org/project/claudecraft/](https://pypi.org/project/claudecraft/)\r\n\r\n---\r\n\r\n## \ud83e\udd1d Contributing\r\n\r\nClaudeCraft follows its own multi-agent development principles:\r\n\r\n1. **Planner Agent**: Review and plan improvements\r\n2. **Coder Agent**: Implement changes with tests\r\n3. **Tester Agent**: Validate all functionality\r\n4. **Documenter Agent**: Update documentation\r\n5. **Reviewer Agent**: Quality and security review\r\n\r\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for detailed guidelines.\r\n\r\n---\r\n\r\n## \ud83d\udcc4 License\r\n\r\nMIT License - see [LICENSE](LICENSE) for details.\r\n\r\n---\r\n\r\n## \u2b50 Why Choose ClaudeCraft?\r\n\r\n> **\"Finally, a development framework that brings order to AI-assisted development. The multi-agent approach eliminates the chaos and ensures every feature is secure, tested, and documented.\"**\r\n\r\n- \ud83c\udfaf **Structured Development**: Clear roles and responsibilities\r\n- \ud83d\udee1\ufe0f **Security Built-In**: OWASP compliance from day one\r\n- \ud83d\udcc8 **Quality Assured**: Comprehensive testing and code review\r\n- \ud83d\udcda **Self-Documenting**: Always up-to-date documentation\r\n- \u26a1 **High Velocity**: Efficient agent handoffs\r\n- \ud83d\udd27 **Production-Ready**: Deployment and monitoring included\r\n\r\n---\r\n\r\n## \ud83c\udf1f Get Started Today\r\n\r\n**Ready to transform your development workflow?**\r\n\r\n1. **Install ClaudeCraft**: `npm install -g claudecraft` or `pip install claudecraft`\r\n2. **Initialize your project**: `claudecraft-init \"my-app\" react-python`\r\n3. **Start building** with structured, secure, quality-focused development\r\n\r\nJoin the revolution in AI-assisted software development! \ud83d\ude80\r\n\r\n---\r\n\r\n*Built by developers, for developers. Designed for quality, security, and velocity.*\r\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Multi-Agent Development Framework for High-Quality, Secure Software Development with Claude AI",
"version": "1.0.2",
"project_urls": {
"Bug Tracker": "https://github.com/stack-junkie/ClaudeCraft/issues",
"Documentation": "https://github.com/stack-junkie/ClaudeCraft#readme",
"Homepage": "https://github.com/stack-junkie/ClaudeCraft",
"Repository": "https://github.com/stack-junkie/ClaudeCraft.git"
},
"split_keywords": [
"claude",
" ai",
" framework",
" development",
" multi-agent",
" security",
" quality",
" template",
" react",
" python",
" nodejs",
" automation",
" workflow"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "1f1c846b956f7b2675709932231f7cc9087c29fe567802e164cda3bd166e158d",
"md5": "01fb33839f6dcbf4fb03aeba4787ec3d",
"sha256": "ef2a6a8854d2a946b720fb48d7ea50518de4c245cee78568a75663eedf7d3ab1"
},
"downloads": -1,
"filename": "claudecraft-1.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "01fb33839f6dcbf4fb03aeba4787ec3d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 7342,
"upload_time": "2025-07-13T02:50:44",
"upload_time_iso_8601": "2025-07-13T02:50:44.184382Z",
"url": "https://files.pythonhosted.org/packages/1f/1c/846b956f7b2675709932231f7cc9087c29fe567802e164cda3bd166e158d/claudecraft-1.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6dc0c8ff0d6d278e32a436b524d1b761b18f756fcb0fbebb2c3613a1c2feece6",
"md5": "f1f9d318178757fff1b572737bcfa863",
"sha256": "1d216bf6a6f9ec8ce354d186bde41412e7130acc3a35022b5f0a8e5b34ef8590"
},
"downloads": -1,
"filename": "claudecraft-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "f1f9d318178757fff1b572737bcfa863",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 9203,
"upload_time": "2025-07-13T02:50:45",
"upload_time_iso_8601": "2025-07-13T02:50:45.292804Z",
"url": "https://files.pythonhosted.org/packages/6d/c0/c8ff0d6d278e32a436b524d1b761b18f756fcb0fbebb2c3613a1c2feece6/claudecraft-1.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-13 02:50:45",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "stack-junkie",
"github_project": "ClaudeCraft",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "claudecraft"
}