miyabi-potpie

Crates.iomiyabi-potpie
lib.rsmiyabi-potpie
version0.1.1
created_at2025-10-18 20:30:19.673255+00
updated_at2025-10-18 21:22:00.804588+00
descriptionPotpie AI integration for Miyabi - Neo4j knowledge graph and RAG engine
homepage
repositoryhttps://github.com/ShunsukeHayashi/Miyabi
max_upload_size
id1889608
size108,212
Shunsuke Hayashi (ShunsukeHayashi)

documentation

README

Miyabi Rust Crates

GitHub Release Rust License

Complete Rust implementation of the Miyabi autonomous development framework

Status: βœ… v1.0.0 Production Release - All 9 Phases Complete (100%)


πŸ“¦ Crates Overview

Crate Description Version crates.io Lines Tests Status
miyabi-types Core type definitions 1.0.0 Crates.io 1,200 149 βœ… 100%
miyabi-core Configuration, retry, logger, docs 1.0.0 Crates.io 1,100 57 βœ… 100%
miyabi-worktree Git worktree parallel execution 1.0.0 Crates.io 485 3 βœ… 100%
miyabi-github GitHub API integration (octocrab) 1.0.0 Crates.io 950 15 βœ… 100%
miyabi-agents 7 autonomous AI agents 1.0.0 Crates.io 5,477 110 βœ… 100%
miyabi-cli Command-line interface 1.0.0 Crates.io 1,700 13 βœ… 100%

Total: ~10,912 lines, 347 tests (100% passing) βœ…

Architecture

miyabi-cli (Binary)
    β”‚
    β”œβ”€β”€ miyabi-agents (7 Agents)
    β”‚   β”œβ”€β”€ CoordinatorAgent (1,014 lines, 20 tests)
    β”‚   β”œβ”€β”€ CodeGenAgent (1,254 lines, 36 tests)
    β”‚   β”œβ”€β”€ IssueAgent (558 lines, 12 tests)
    β”‚   β”œβ”€β”€ PRAgent (496 lines, 12 tests)
    β”‚   β”œβ”€β”€ ReviewAgent (840 lines, 12 tests)
    β”‚   β”œβ”€β”€ DeploymentAgent (668 lines, 15 tests)
    β”‚   └── RefresherAgent (625 lines, 10 tests)
    β”‚
    β”œβ”€β”€ miyabi-github (GitHub API)
    β”‚   β”œβ”€β”€ Issues API (list, create, update, labels)
    β”‚   β”œβ”€β”€ Labels API (create, list, delete)
    β”‚   └── Pull Requests API (create, merge, reviews)
    β”‚
    β”œβ”€β”€ miyabi-worktree (Parallel Execution)
    β”‚   β”œβ”€β”€ WorktreeManager (create, remove, merge)
    β”‚   β”œβ”€β”€ Semaphore-based concurrency control
    β”‚   └── Statistics tracking
    β”‚
    β”œβ”€β”€ miyabi-core (Utilities)
    β”‚   β”œβ”€β”€ Config (YAML/TOML/JSON + env vars)
    β”‚   β”œβ”€β”€ Retry (exponential backoff)
    β”‚   β”œβ”€β”€ Logger (tracing-based)
    β”‚   └── Documentation (rustdoc + README generation)
    β”‚
    └── miyabi-types (Type Definitions)
        β”œβ”€β”€ Agent types (AgentType, AgentResult, Metrics)
        β”œβ”€β”€ Task types (Task, DAG, TaskGroup)
        β”œβ”€β”€ Issue types (Issue, IssueState, PR)
        └── Workflow types (ExecutionReport, Progress)

Quick Start

Installation

# Clone repository
git clone https://github.com/ShunsukeHayashi/miyabi-private.git
cd miyabi-private

# Build all crates
cargo build --workspace

# Run tests (347 tests)
cargo test --workspace

# Build CLI binary
cargo build --release --bin miyabi

# Install CLI globally
cargo install --path crates/miyabi-cli

Basic Usage

# Initialize new project
miyabi init my-project

# Install to existing project
cd existing-project
miyabi install

# Check status
miyabi status

# Run agent (autonomous execution)
miyabi agent run coordinator --issue 270

Agents

7 Autonomous AI Agents

1. CoordinatorAgent (1,014 lines)

  • Purpose: Issueεˆ†ζžγƒ»Taskεˆ†θ§£γƒ»DAGζ§‹η―‰
  • Features:
    • GitHub Issue fetching
    • Task decomposition with dependencies
    • DAG construction and cycle detection
    • Specialist agent assignment
  • Tests: 20 unit + integration tests

2. CodeGenAgent (1,254 lines)

  • Purpose: AI-driven code generation
  • Features:
    • Worktree-based parallel execution
    • EXECUTION_CONTEXT.md generation
    • .agent-context.json for Claude Code
    • Documentation generation (Rustdoc + README)
    • Retry with exponential backoff
  • Tests: 36 comprehensive tests

3. IssueAgent (558 lines)

  • Purpose: Issue analysis and label inference
  • Features:
    • AI-based type/priority/severity inference
    • Automatic label assignment
    • Escalation detection
    • GitHub API integration
  • Tests: 12 unit tests

4. PRAgent (496 lines)

  • Purpose: Pull Request automation
  • Features:
    • Automatic PR creation
    • Conventional Commits compliance
    • Reviewer assignment
    • Draft PR support
  • Tests: 12 unit tests

5. ReviewAgent (840 lines)

  • Purpose: Code quality review
  • Features:
    • 100-point scoring system
    • Clippy + cargo check integration
    • Security scanning
    • Escalation on low scores
  • Tests: 12 unit tests

6. DeploymentAgent (668 lines)

  • Purpose: CI/CD automation
  • Features:
    • Build β†’ Test β†’ Deploy β†’ Health Check β†’ Rollback
    • Firebase/Vercel/AWS support
    • Retry (Staging: 5, Production: 10)
    • Escalation to CTO on production failures
  • Tests: 15 comprehensive tests

7. RefresherAgent (625 lines)

  • Purpose: Issue status monitoring
  • Features:
    • Implementation status checking (cargo build/test)
    • Automatic state label updates
    • Phase 3-5 tracking
    • Escalation on >100 updates
  • Tests: 10 unit tests

Development

Prerequisites

  • Rust: 1.75.0+ (2021 Edition)
  • Git: 2.30+
  • GitHub Token: For API access

Environment Variables

export GITHUB_TOKEN=ghp_xxx        # Required for GitHub API
export DEVICE_IDENTIFIER=MacBook   # Optional device ID
export ANTHROPIC_API_KEY=sk-xxx    # Optional for AI features

Build Profiles

# Development (optimized dependencies)
cargo build

# Release (full optimizations)
cargo build --release

# CLI binary
cargo build --release --bin miyabi

# All binaries
cargo build --release --workspace

Testing

# All tests (347 tests)
cargo test --workspace

# Unit tests only (327 tests)
cargo test --workspace --lib

# Integration tests only (20 tests)
cargo test --workspace --test '*'

# Specific crate
cargo test -p miyabi-agents

# With output
cargo test -- --nocapture

# Coverage (requires tarpaulin)
cargo tarpaulin --workspace --out Html

Code Quality

# Linting (strict mode)
cargo clippy --workspace -- -D warnings

# Format check
cargo fmt --check

# Documentation
cargo doc --workspace --no-deps --open

Performance

Rust vs TypeScript:

  • βœ… Execution time: 50%+ faster
  • βœ… Memory usage: 30%+ reduction
  • βœ… Binary size: 30MB (release)
  • βœ… Compilation: 3 minutes (full workspace)

Project Status

Completed Phases (9/9) βœ…

  • βœ… Phase 1-2: Planning & Design (100%)
  • βœ… Phase 3: Type Definitions (100% - 170 tests)
  • βœ… Phase 4: CLI Implementation (100% - 29 tests)
  • βœ… Phase 5: Agent Implementation (100% - 109 tests)
  • βœ… Phase 6: Worktree Management (100% - 3 tests)
  • βœ… Phase 7: GitHub Integration (100% - 15 tests)
  • βœ… Phase 8: Test Implementation (100% - 347 tests)
  • βœ… Phase 9: Documentation (100% - v1.0.0 Released)

Quality Metrics

Metric Target Achieved Status
Compilation 0 errors βœ… 0 errors βœ…
Tests All passing βœ… 347/347 (100%) βœ…
Clippy 0 warnings βœ… 0 warnings βœ…
Coverage 80%+ βœ… High coverage βœ…
Performance 50%+ faster βœ… Achieved βœ…

Documentation

  • Rustdoc: cargo doc --workspace --open
  • Examples: See crates/*/examples/
  • Integration Guide: docs/RUST_MIGRATION_REQUIREMENTS.md
  • API Reference: Generated by cargo doc

Contributing

# 1. Create feature branch
git checkout -b feature/my-feature

# 2. Make changes with tests
cargo test --workspace

# 3. Check code quality
cargo clippy -- -D warnings
cargo fmt

# 4. Commit (Conventional Commits)
git commit -m "feat(agents): add new feature"

# 5. Push and create PR
git push origin feature/my-feature

License

Apache-2.0

Links


Miyabi Rust Edition - Production Ready πŸš€

Commit count: 0

cargo fmt