Autonomous development powered by Miyabi - AI-driven development framework.
# Set environment variables
cp .env.example .env
# Edit .env and add your tokensnpm installnpm run dev # Run development server
npm run build # Build project
npm test # Run tests
npm run typecheck # Check types
npm run lint # Lint codesaiyoOutput/
├── src/ # Source code
│ └── index.ts # Entry point
├── tests/ # Test files
│ └── example.test.ts
├── .claude/ # AI agent configuration
│ ├── agents/ # Agent definitions
│ └── commands/ # Custom commands
├── .github/
│ ├── workflows/ # CI/CD automation
│ └── labels.yml # Label system (53 labels)
├── CLAUDE.md # AI context file
└── package.json
This project uses 7 autonomous AI agents:
- CoordinatorAgent - Task planning & orchestration
- IssueAgent - Automatic issue analysis & labeling
- CodeGenAgent - AI-powered code generation
- ReviewAgent - Code quality validation (80+ score)
- PRAgent - Automatic PR creation
- DeploymentAgent - CI/CD deployment automation
- TestAgent - Test execution & coverage
- Create Issue: Describe what you want to build
- Agents Work: AI agents analyze, implement, test
- Review PR: Check generated pull request
- Merge: Automatic deployment
Issues transition through states automatically:
📥 state:pending- Waiting for agent assignment🔍 state:analyzing- Being analyzed🏗️ state:implementing- Code being written👀 state:reviewing- Under review✅ state:done- Completed & merged
# Check project status
npx miyabi status
# Watch for changes (real-time)
npx miyabi status --watch
# Create new issue
gh issue create --title "Add feature" --body "Description"Required variables (see .env.example):
GITHUB_TOKEN- GitHub personal access tokenANTHROPIC_API_KEY- Claude API key (optional for local development)REPOSITORY- Format:owner/repo
Workflows are pre-configured in .github/workflows/:
- CI/CD pipeline
- Automated testing
- Deployment automation
- Agent execution triggers
Note: Set repository secrets at:
https://github.com/PLark-droid/saiyoOutput/settings/secrets/actions
Required secrets:
GITHUB_TOKEN(auto-provided by GitHub Actions)ANTHROPIC_API_KEY(add manually for agent execution)
- Miyabi Framework: https://github.com/ShunsukeHayashi/Miyabi
- NPM Package: https://www.npmjs.com/package/miyabi
- Label System: See
.github/labels.yml - Agent Operations: See
CLAUDE.md
- Issues: https://github.com/ShunsukeHayashi/Miyabi/issues
- Discord: [Coming soon]
MIT
✨ Generated by Miyabi