An empty Workspai python-only profile fixture. Workspace Intelligence is
available; Python engine installation was intentionally deferred in this raw
fixture.
cd python-only-workspace
npx workspai workspace sync
npx workspai workspace contract verify --strict --json
npx workspai workspace model --json --writeThe first sync registers this cloned workspace on the current machine. An empty model with zero projects is expected until you add one.
npx workspai create project fastapi.standard api --yes
# Or use an existing Python project:
npx workspai import ../existing-api --workspace . --json
npx workspai adopt ../existing-api --workspace . --dry-run --json
npx workspai adopt ../existing-api --workspace . --json
npx workspai workspace syncInitialize all discovered projects when needed:
npx workspai workspace run initnpx workspai workspace intelligence run --for-agent generic --json
npx workspai workspace model --json --write
npx workspai workspace snapshot --jsonStart with AGENTS.md for Codex and other agents or
.github/copilot-instructions.md for Copilot. Claude and Cursor receive the
same workspace grounding through CLAUDE.md, .claude/, and .cursor/.
Refresh current evidence with the intelligence command above after cloning.
Complete clone, registry, import, adopt, intelligence, and CI workflow: Workspace onboarding.