codemesh runs
#Syntax
codemesh runs
#Purpose
List agent run metadata stored in the local CodeMesh home, including run ID, project alias, base, profile, creation time, and workspace path.
#Safe Example
demo="$(mktemp -d)"
export CODEMESH_HOME="$demo/codemesh-home"
workspace="$demo/workspace"
seed="$demo/seed"
remote="$demo/demo.git"
mkdir -p "$workspace" "$seed"
git -C "$seed" init -b main
printf '# demo\n' > "$seed/README.md"
git -C "$seed" add README.md
git -C "$seed" -c user.name='CodeMesh Demo' -c user.email='demo@example.invalid' commit -m 'Initial demo'
git clone --bare "$seed" "$remote"
git clone "$remote" "$workspace/demo-project"
codemesh init "$workspace"
codemesh add "$workspace/demo-project" --alias demo-project
codemesh agent prepare demo-project --base main --profile codex
codemesh runs
#Current Limitations
- Lists local run metadata only.
- Does not inspect agent process state or remote machine state.
- Does not prune runs; use
codemesh cleanfor cleanup.
Back to Command Catalog.