Liang Xiao 70b7d362dc fix(install): include agent metadata config in profile installs (#280) 2 weeks ago
..
bridge 013682c499 fix: resolve installer failures and add comprehensive validation (#189) 2 months ago
check-context-logs 11b94b2ab2 feat: Complete registry and profile overhaul for consistent component distribution (#87) 3 months ago
development 11b94b2ab2 feat: Complete registry and profile overhaul for consistent component distribution (#87) 3 months ago
docs fc29fa3dc4 feat: add PR template and automated doc sync workflow (#40) 4 months ago
external-context 193271091a feat: add ExternalScout and optimize ContextScout with research-backed patterns (#128) 2 months ago
hooks f1dd4b77f3 fix(ci): suppress shellcheck warning for reserved YELLOW variable (#200) 2 months ago
maintenance fc29fa3dc4 feat: add PR template and automated doc sync workflow (#40) 4 months ago
prompts 013682c499 fix: resolve installer failures and add comprehensive validation (#189) 2 months ago
registry c799173dd0 align context and skills consistency (#192) (#198) 2 months ago
testing 11b94b2ab2 feat: Complete registry and profile overhaul for consistent component distribution (#87) 3 months ago
tests 70b7d362dc fix(install): include agent metadata config in profile installs (#280) 2 weeks ago
validation 5a40b6fdc4 feat(context): Standardize context system with navigation, frontmatter, and MVI compliance (#209) 1 month ago
versioning fc29fa3dc4 feat: add PR template and automated doc sync workflow (#40) 4 months ago
README.md bf02ad0d5c refactor: Rename repository to OpenAgents Control (#100) 2 months ago
auto-detect-components.sh 013682c499 fix: resolve installer failures and add comprehensive validation (#189) 2 months ago
validate-registry.sh 013682c499 fix: resolve installer failures and add comprehensive validation (#189) 2 months ago

README.md

Scripts

This directory contains utility scripts for the OpenAgents Control system, organized by function.

Directory Structure

scripts/
├── registry/              # Component registry management
│   ├── auto-detect-components.sh
│   ├── register-component.sh
│   ├── validate-component.sh
│   └── validate-registry.sh
├── validation/            # Context and validation scripts
│   └── validate-context-refs.sh
├── versioning/            # Version management
│   └── bump-version.sh
├── maintenance/           # Cleanup and maintenance
│   ├── cleanup-stale-sessions.sh
│   └── uninstall.sh
├── development/           # Development utilities
│   ├── dashboard.sh
│   └── demo.sh
├── testing/               # Test runner
│   └── test.sh
├── check-context-logs/    # Context logging utilities
├── prompts/               # Prompt management
└── tests/                 # Installer test scripts

Available Scripts

Testing

  • testing/test.sh - Main test runner with multi-agent support
    • Run all tests: ./scripts/testing/test.sh openagent
    • Run core tests: ./scripts/testing/test.sh openagent --core (7 tests, ~5-8 min)
    • Run with specific model: ./scripts/testing/test.sh openagent opencode/grok-code-fast
    • Debug mode: ./scripts/testing/test.sh openagent --core --debug

See tests/ subdirectory for installer test scripts.

Registry Management

  • registry/auto-detect-components.sh - Auto-detect new components in .opencode/
  • registry/register-component.sh - Register a new component in the registry
  • registry/validate-component.sh - Validate component structure and metadata
  • registry/validate-registry.sh - Validate all registry paths

Validation

  • validation/validate-context-refs.sh - Validate context references in markdown files

Versioning

  • versioning/bump-version.sh - Bump version (alpha, beta, rc, patch, minor, major)

Maintenance

  • maintenance/cleanup-stale-sessions.sh - Remove stale agent sessions older than 24 hours
  • maintenance/uninstall.sh - Uninstall OpenCode agents

Development

  • development/demo.sh - Interactive demo of repository structure
  • development/dashboard.sh - Launch test results dashboard

Session Cleanup

Agent instances create temporary context files in .tmp/sessions/{session-id}/ for subagent delegation. These sessions are automatically cleaned up, but you can manually remove stale sessions:

# Clean up sessions older than 24 hours
./scripts/maintenance/cleanup-stale-sessions.sh

# Or manually delete all sessions
rm -rf .tmp/sessions/

Sessions are safe to delete anytime - they only contain temporary context files for agent coordination.

Usage Examples

Run Tests

# Run core test suite (fast, 7 tests, ~5-8 min)
./scripts/testing/test.sh openagent --core

# Run all tests for OpenAgent
./scripts/testing/test.sh openagent

# Run tests with specific model
./scripts/testing/test.sh openagent anthropic/claude-sonnet-4-5

# Run core tests with debug mode
./scripts/testing/test.sh openagent --core --debug

Registry Management

# Auto-detect new components
./scripts/registry/auto-detect-components.sh --dry-run

# Add new components to registry
./scripts/registry/auto-detect-components.sh --auto-add

# Validate registry
./scripts/registry/validate-registry.sh -v

# Register a specific component
./scripts/registry/register-component.sh path/to/component

# Validate a component
./scripts/registry/validate-component.sh path/to/component

Maintenance

# Clean stale sessions
./scripts/maintenance/cleanup-stale-sessions.sh

# Uninstall OpenCode agents
./scripts/maintenance/uninstall.sh

Development

# Run interactive demo
./scripts/development/demo.sh

# Launch test results dashboard
./scripts/development/dashboard.sh

Versioning

# Bump version
./scripts/versioning/bump-version.sh patch
./scripts/versioning/bump-version.sh minor
./scripts/versioning/bump-version.sh major
./scripts/versioning/bump-version.sh alpha

Core Test Suite

The core test suite is a subset of 7 carefully selected tests that provide ~85% coverage of critical OpenAgent functionality in just 5-8 minutes.

Why Use Core Tests?

  • Fast feedback - 5-8 minutes vs 40-80 minutes for full suite
  • Prompt iteration - Quick validation when updating agent prompts
  • Development - Fast validation during development cycles
  • Pre-commit - Quick checks before committing changes

What's Covered?

  1. Approval Gate - Critical safety rule
  2. Context Loading (Simple) - Most common use case
  3. Context Loading (Multi-Turn) - Complex scenarios
  4. Stop on Failure - Error handling
  5. Simple Task - No unnecessary delegation
  6. Subagent Delegation - Proper delegation when needed
  7. Tool Usage - Best practices

When to Use Full Suite?

Use the full test suite (71 tests) for:

  • 🔬 Release validation
  • 🔬 Comprehensive testing
  • 🔬 Edge case coverage
  • 🔬 Regression testing

See evals/agents/openagent/CORE_TESTS.md for detailed documentation.