Skip to content

Latest commit

 

History

History

README.md

Python-only Workspace

An empty Workspai python-only profile fixture. Workspace Intelligence is available; Python engine installation was intentionally deferred in this raw fixture.

Start after clone or download

cd python-only-workspace
npx workspai workspace sync
npx workspai workspace contract verify --strict --json
npx workspai workspace model --json --write

The first sync registers this cloned workspace on the current machine. An empty model with zero projects is expected until you add one.

Add a project

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 sync

Initialize all discovered projects when needed:

npx workspai workspace run init

Continue with Workspace Intelligence

npx workspai workspace intelligence run --for-agent generic --json
npx workspai workspace model --json --write
npx workspai workspace snapshot --json

AI and IDE entry points

Start 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.