php-devops/doc/commands.md
Snider 97aab0fcca docs: add VitePress documentation with GitHub Pages deployment
- VitePress config with canonical URLs to core.help
- Developer preview banner linking to main docs
- Documentation pages: quick-start, commands, core-folder, repos-yaml
- GitHub Actions workflow for Pages deployment

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 20:28:07 +00:00

1.9 KiB

Commands Reference

All core CLI commands available in the workspace.

Workspace Commands

core health

Quick status summary of all repos.

core health
# Output: 18 repos │ 2 dirty │ synced

core work

Full workflow: status → commit → push.

core work              # Interactive
core work --status     # Status table only

core commit

Claude-assisted commits for dirty repos.

core commit            # Interactive
core commit --all      # Commit all without prompting

core push

Push repos with unpushed commits.

core push              # Interactive
core push --force      # Push without confirmation

core pull

Pull repos that are behind.

core pull              # Interactive
core pull --all        # Pull all repos

GitHub Integration

core issues

List open issues across repos.

core issues                    # All open issues
core issues --assignee @me     # Assigned to you

core reviews

List PRs needing review.

core reviews

core ci

GitHub Actions workflow status.

core ci

Analysis

core impact

Show what depends on a package.

core impact core-php

Package Commands

core php test

Run Pest tests in the active package.

core php test
core php test --filter=ClassName

core php lint

Run Pint linter in the active package.

core php lint

core php dev

Start Vite dev server in the active package.

core php dev

Setup Commands

core setup

Clone repos into the workspace.

core setup                           # Default (foundation + module)
core setup --only foundation,module  # Specific types

core doctor

Check environment health.

core doctor           # Check only
core doctor --fix     # Attempt to fix issues