PluginBench
Skill
Review
Audit score 70

ce-setup

everyinc/compound-engineering-plugin

Check Compound Engineering health and configure repo-local settings.

What is ce-setup?

ce-setup is a lightweight diagnostic and configuration helper for Compound Engineering projects. It checks environment health, detects optional tools, and guides you through setting up repo-local config files safely with proper gitignore rules.

  • Diagnose installed plugin version and environment health
  • Check for optional tools (agent-browser, gh, jq, ast-grep, ffmpeg)
  • Detect and remove obsolete compound-engineering.local.md files
  • Refresh .compound-engineering/config.local.example.yaml from bundled template
  • Create and gitignore .compound-engineering/config.local.yaml for project-specific preferences
  • Verify local config is properly excluded from version control

How to install ce-setup

npx skills add https://github.com/everyinc/compound-engineering-plugin --skill ce-setup
Claude Code
Cursor
Windsurf
Cline

How to use ce-setup

  1. 1.Run the skill to start the health check
  2. 2.Review the diagnostic output showing plugin version and available tools
  3. 3.Answer prompts to remove obsolete config files if present
  4. 4.Approve refreshing the example config template
  5. 5.Decide whether to create a local config file for project-specific settings
  6. 6.Confirm adding .compound-engineering/*.local.yaml to .gitignore if needed
  7. 7.Review the summary of fixes applied and optional tools still available

Use cases

Good for
  • Onboard a new team member to a Compound Engineering project
  • Verify all optional dependencies are installed before running workflows
  • Migrate from obsolete local config format to the new .compound-engineering directory structure
  • Set up project-specific preferences for output formats and Codex delegation
  • Ensure local config files are never accidentally committed to the repository
Who it's for
  • Compound Engineering plugin users
  • Project leads setting up team repositories
  • Developers migrating existing Compound Engineering projects

ce-setup FAQ

What happens if optional tools are missing?

Missing optional tools are reported in the diagnostic output with install commands. ce-setup does not bulk-install them—install only the tools for workflows you actually use.

Is .compound-engineering/config.local.yaml required?

No. The file is optional and only needed if you want to customize project-specific settings like output formats or Codex delegation defaults. All settings start commented out.

Will ce-setup modify my .gitignore without asking?

No. It only appends .compound-engineering/*.local.yaml to .gitignore if you approve, and only if the entry is not already present.

What is compound-engineering.local.md and why is it obsolete?

It was the old format for machine-local settings. Review-agent selection is now automatic, and all local preferences are managed in .compound-engineering/config.local.yaml instead.

Can I run ce-setup multiple times?

Yes. You can run /ce-setup anytime to re-check your environment and configuration status.

Full instructions (SKILL.md)

Source of truth, from everyinc/compound-engineering-plugin.


name: ce-setup description: "Check Compound Engineering health and repo-local config." disable-model-invocation: true

Compound Engineering Setup

Interaction Method

Ask each question below using the platform's blocking question tool: AskUserQuestion in Claude Code (call ToolSearch with select:AskUserQuestion first if its schema isn't loaded), request_user_input in Codex, ask_question in Antigravity CLI (agy), ask_user in Pi (requires the pi-ask-user extension). Fall back to a numbered list in chat only when no blocking tool exists in the harness or the call errors. Never silently skip or auto-configure.

ce-setup is a lightweight health check and repo-local config helper. It does not bulk-install every optional dependency. Missing tools are reported as optional capabilities so the user can install only the workflows they use.

Phase 1: Diagnose

Step 1: Determine Plugin Version

Detect the installed compound-engineering plugin version by reading the plugin metadata or manifest when the platform exposes it. If the version cannot be determined, skip this step.

If a version is found, pass it to the check script via --version. Otherwise omit the flag.

Step 2: Run the Health Check

Before running the script, display:

Compound Engineering -- checking your environment...

Run the bundled check script. Set SKILL_DIR to the absolute directory you loaded this ce-setup SKILL.md from — the Bash tool's CWD is the user's project, not the skill dir, so a bare scripts/ path will not resolve:

SKILL_DIR="<absolute path of the directory containing this SKILL.md>"
if [ -f "$SKILL_DIR/scripts/check-health" ]; then
  bash "$SKILL_DIR/scripts/check-health" --version VERSION
else
  echo "Bundled health script not found at $SKILL_DIR/scripts/check-health; run the inline checks from ce-setup instead."
fi

Use the same command without --version VERSION if Step 1 could not determine a version.

If the script is unavailable, perform the inline equivalent:

  1. Check optional tools with command -v: agent-browser, gh, jq, ast-grep, ffmpeg.
  2. If inside a git repo, resolve the repo root with git rev-parse --show-toplevel.
  3. Check for obsolete compound-engineering.local.md at the repo root.
  4. Check whether .compound-engineering/config.local.yaml exists and, if it does, whether git check-ignore -q .compound-engineering/config.local.yaml succeeds.
  5. Compare .compound-engineering/config.local.example.yaml with references/config-template.yaml when the template is readable; otherwise report that the example refresh must be done manually.

Display the diagnostic output to the user. Missing optional tools are not setup failures.

Step 3: Decide Whether Fixes Are Needed

Proceed to Phase 2 only if one or more repo-local project issues exist:

  • obsolete compound-engineering.local.md
  • .compound-engineering/config.local.yaml exists but is not safely gitignored
  • .compound-engineering/config.local.example.yaml is missing or outdated

If no project issues exist, report:

✅ Compound Engineering setup complete

Project config: ✅
Optional capabilities: see diagnostic report above

Run /ce-setup anytime to re-check.

If optional tools are missing, do not offer a bulk install. The diagnostic already printed the relevant install command or project URL. Say: "Install optional tools only for the workflows you use."

Phase 2: Fix Repo-Local Issues

Resolve the repository root (git rev-parse --show-toplevel). All paths below are relative to the repo root, not the current working directory.

Step 4: Remove Obsolete Local Config

If compound-engineering.local.md exists at the repo root, explain that it is obsolete because review-agent selection is automatic and surviving machine-local settings now live in .compound-engineering/config.local.yaml.

Ask whether to delete it now. Delete only if the user approves.

Step 5: Refresh Example Config

Copy references/config-template.yaml to <repo-root>/.compound-engineering/config.local.example.yaml, creating the directory if needed. This file is committed to the repo and should always reflect the latest available settings.

If the bundled template cannot be located by the current platform, print the source template path that failed and tell the user the example config could not be refreshed automatically.

Step 6: Create Local Config If Wanted

If .compound-engineering/config.local.yaml does not exist, ask:

Set up a local config file for this project?
This saves optional Compound Engineering preferences such as output formats, product pulse settings, and Codex delegation defaults.
Everything starts commented out -- you only enable what you need.

1. Yes, create it
2. No thanks

If the user approves, copy references/config-template.yaml to <repo-root>/.compound-engineering/config.local.yaml.

Step 7: Ensure Local Config Is Gitignored

If .compound-engineering/config.local.yaml exists and is not covered by .gitignore, offer to add:

.compound-engineering/*.local.yaml

Append the entry to the repo-root .gitignore only if the user approves. Do not overwrite unrelated .gitignore content.

Phase 3: Summary

Display a brief summary:

✅ Compound Engineering setup complete

Fixed:     <repo-local fixes applied, or none>
Skipped:   <repo-local fixes declined, or none>
Optional:  <missing optional tools, or all available>

Run /ce-setup anytime to re-check.