BALDART is a portable framework for coordinating AI agents (like Claude Code, Codex) and human developers in software projects. It provides a standardized AGENTS.md protocol, 27 pre-built specialized agents (coder, code-reviewer, architect, security-reviewer), batch orchestration commands (/new, /design-review), and templates for backlog cards, PRDs, specs, and breaking-change checklists. The framework is installed via npm (no bash scripts) and integrates automatically with Claude Code and Codex via .claude/ directory agents/commands/skills. Current version is 4.14.0, released roughly monthly. Key differentiators: zero-config smart doctor CLI (single 'baldart' command auto-detects repo state), per-item-merge agent installation (preserves custom files), and a framework-edit-gate hook that prevents accidental edits to framework files. Requires Node.js >= 18.
npm install baldartNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Global install and first-run setup using the smart doctor CLI. Shows how to install, initialize, and update the framework.
Run 'baldart' (no args) which will prompt to migrate. Or manually remove legacy directories and re-run 'baldart add'.
Use .claude/agents/ for custom agents. If you must edit a framework agent, copy it to .claude/agents/ first, then modify.
Replace 'npx -y github:antbald/BALDART add' with 'npx baldart add' or 'npx baldart@4.14.0 add'.
Use 'npx baldart' to bypass global ambiguity, or uninstall conflicting packages.
Run 'npx baldart configure' after upgrading to regenerate config with new defaults. Migrate custom fields manually.
Re-run 'npx baldart' to re-register hooks, or manually add the hook entry to .claude/settings.json.
Run 'npm i -g baldart' again, or use 'npx baldart' without global install.
Run 'npx baldart' or add npm global prefix to PATH: export PATH=$(npm root -g)/bin:$PATH
Run 'npx baldart' (no args) to auto-migrate, or 'npx baldart add' to reinstall fresh.
Ensure .claude/ exists and is writable. Run 'mkdir -p .claude && chmod u+w .claude'. Then re-run 'npx baldart'.
Upgrade Node.js to v18 or later (e.g., via nvm: nvm install 18).