Skip to content

Releases: seth-schultz/orchestr8

Release v8.0.6

13 Nov 03:08

Choose a tag to compare

fix: Correct MCP server name in all workflow commands

Fixed critical bug where workflows instructed Claude to use wrong MCP server name.

Changes:
- Updated mcp-loading-header.md template: "orchestr8" → "plugin:orchestr8:orchestr8-resources"
- Fixed all 39 workflow commands in plugins/orchestr8/commands/
- Updated mcp-resource-loading.md guide with correct examples
- Updated CHANGELOG.md entry

This prevents the initial "Server not found" error that users were experiencing.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

orchestr8 Plugin Release v8.0.5

13 Nov 02:45

Choose a tag to compare

orchestr8 Plugin Release v8.0.5

Code Signing

This release includes cryptographic signatures to verify authenticity and prevent supply chain attacks.

Verification Instructions:

  1. Download the plugin and signature files
  2. Import the public key:
    gpg --import ORCHESTR8_PUBLIC_KEY.asc
  3. Verify the signature:
    cd plugins/orchestr8
    ./scripts/verify-plugin.sh

Expected Key Fingerprint:

${KEY_FINGERPRINT}

Files Included

  • CHECKSUMS.txt - SHA256 checksums of all plugin files
  • CHECKSUMS.txt.asc - GPG signature of checksums
  • ORCHESTR8_PUBLIC_KEY.asc - Public key for verification

Security

All files have been signed with the orchestr8 security key. Always verify signatures before using this plugin in production environments.

For more information, see CODE_SIGNING.md

Release v8.0.4

13 Nov 02:15

Choose a tag to compare

chore: Bump version to 8.0.4

Implement esbuild-based bundling for MCP server to resolve dependency installation issues.

- Bundle all dependencies into single dist/index.js file
- Add CommonJS require polyfill for CJS dependencies
- Update build script to use bundling instead of TypeScript compilation
- Remove separate .d.ts and .js files in favor of single bundle
- Fix MCP server startup failures due to missing node_modules in marketplace installations

Version updates:
- VERSION: 8.0.4
- package.json: 8.0.4
- plugin.json: 8.0.4
- marketplace.json: 8.0.4

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

orchestr8 Plugin Release v8.0.3

13 Nov 02:03

Choose a tag to compare

orchestr8 Plugin Release v8.0.3

Code Signing

This release includes cryptographic signatures to verify authenticity and prevent supply chain attacks.

Verification Instructions:

  1. Download the plugin and signature files
  2. Import the public key:
    gpg --import ORCHESTR8_PUBLIC_KEY.asc
  3. Verify the signature:
    cd plugins/orchestr8
    ./scripts/verify-plugin.sh

Expected Key Fingerprint:

${KEY_FINGERPRINT}

Files Included

  • CHECKSUMS.txt - SHA256 checksums of all plugin files
  • CHECKSUMS.txt.asc - GPG signature of checksums
  • ORCHESTR8_PUBLIC_KEY.asc - Public key for verification

Security

All files have been signed with the orchestr8 security key. Always verify signatures before using this plugin in production environments.

For more information, see CODE_SIGNING.md

Release v8.0.1

13 Nov 01:36

Choose a tag to compare

Bug Fixes

  • Plugin Marketplace Installation: Fixed MCP server configuration to use inline format instead of external .mcp.json reference, avoiding variable expansion bug that prevented proper marketplace installation

Changes

  • Changed plugin.json to use inline mcpServers object with ${CLAUDE_PLUGIN_ROOT} variables for reliable path resolution
  • Ensures orchestr8 MCP server starts correctly when installed via /plugin install orchestr8

This is a critical fix for users installing orchestr8 from the Claude Code plugin marketplace.

Release v8.0.0

13 Nov 00:46

Choose a tag to compare

orchestr8 v8.0.0

What's New

Major Changes

  • Complete v8 rewrite with improved architecture
  • Token-efficient resource loading system
  • Enhanced MCP server implementation

Bug Fixes

  • Critical: Fixed marketplace installation - dist directory now included in repository for plug-and-play installation
  • All compiled files are now available when installing from GitHub/marketplace

Installation

# Via Claude Code marketplace (recommended)
/plugin install orchestr8@orchestr8

# Manual installation
git clone https://github.com/seth-schultz/orchestr8.git
cd orchestr8
# No build required - dist files are included!

Breaking Changes

  • Requires migration from v7.x configurations
  • See CONFIGURATION.md for updated setup

🤖 Generated with Claude Code

Release v7.1.0

11 Nov 20:24

Choose a tag to compare

feat: add comprehensive Mermaid diagram generation capabilities (#9)

New Features:
- diagram-specialist agent: Expert in creating Mermaid diagrams for architecture,
  data flows, sequence diagrams, user journeys, ERDs, state machines, and deployment topology
- /orchestr8:generate-diagrams command: Autonomous 6-phase workflow for generating
  visual documentation from codebase analysis

Diagram Types Supported:
- C4 Architecture Model (L0-L3):
  * L0: System Context - big picture view
  * L1: Container - apps, services, databases
  * L2: Component - internal service structure
  * L3: Code - class and module relationships
- Data Flow Diagrams - data movement and transformations
- Sequence Diagrams - API interactions and async workflows
- User Journey Flows - UX paths with decision points
- Entity Relationship Diagrams - database schemas
- State Machines - workflow states and transitions
- Deployment Diagrams - infrastructure topology

Features:
- All diagrams use Mermaid syntax (renders in GitHub, VS Code)
- Automatic categorization to .orchestr8/docs/diagrams/
- Comprehensive examples with 8 diagram types demonstrated
- Best practices guide and color scheme standards
- Integration patterns for other workflows
- Automatic README index generation

Documentation:
- plugins/orchestr8/agents/visualization/diagram-specialist.md - Agent with examples
- plugins/orchestr8/commands/generate-diagrams.md - 6-phase workflow
- plugins/orchestr8/docs/examples/diagrams/EXAMPLES.md - Complete examples

Closes #9

Release v7.0.0

10 Nov 02:05
8c15ce9

Choose a tag to compare

feat: comprehensive CI/CD security hardening and OpenSSF Scorecard co…

Release v6.4.0

09 Nov 05:49

Choose a tag to compare

feat: add 8 comprehensive research workflow commands

## Added
- /orchestr8:research - Parallel hypothesis testing with empirical validation
- /orchestr8:benchmark - Technology/pattern comparison with benchmarks
- /orchestr8:validate-assumptions - Systematic assumption validation
- /orchestr8:explore-alternatives - Multi-approach exploration with scoring
- /orchestr8:research-solution - Research workflow alias (solution focus)
- /orchestr8:compare-approaches - Benchmark workflow alias (comparison focus)
- /orchestr8:validate-architecture - Validate-assumptions alias (architecture focus)
- /orchestr8:discover-patterns - Pattern discovery using pattern-learner

## Enhanced
- All research workflows now champion parallelism (3-5x speedups)
- Proper delegation patterns with autonomous orchestration
- Comprehensive phase-by-phase instructions for orchestrators
- Quality gates with bash validation
- Specialized agent coordination across research agents
- Standardized output to .orchestr8/docs/ structure

## Fixed
- Updated agent count from "79+" to "80+" (actual: 80 agents)
- Removed /workflows/ directory (replaced with proper /commands/)
- All 31 slash commands in README now exist and functional

## Removed
- /workflows/ directory (no longer needed)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>

Release v6.3.0

08 Nov 00:46

Choose a tag to compare

chore: bump version to 6.3.0 - model inheritance system

- All 84 agents now use 'model: inherit' for maximum user flexibility
- Users control agent models via main conversation setting
- All 23 workflows updated to use Anthropic API aliases (claude-sonnet-4-5, claude-opus-4-1)
- Removed Haiku from workflows (upgraded to Sonnet for consistency)
- Updated agent-design-patterns skill with new inheritance model documentation
- Added comprehensive model migration audit reports to .orchestr8/docs/architecture/

Benefits:
- Per-project model selection without code changes
- Single configuration point (main conversation model)
- Future-proof: agents adapt when users upgrade their model
- Simplified maintenance: no need to update 84 files for new models
- Consistent quality: workflows maintain explicit model standards

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>