Skip to main content

Mount, not install. AI workspace configuration from git-backed registries.

Project description

csaw

Mount, not install. Your AI workspace — symlinked from registries, reversible, inspectable.

CI License: MIT Version PyPI

Works with: Claude Code · OpenCode · Codex · Cursor · Windsurf · Gemini CLI

csaw demo


csaw manages agent instructions, skills, and configs from git-backed registries — symlinked into your projects, mounted into tool-native directories, and removed without a trace.

csaw mount                        # pick a profile interactively
csaw mount --profile team/backend # or specify directly
csaw inspect                      # see everything that's active
csaw unmount                      # clean removal, no trace

Why csaw?

Your AI coding tools (Claude Code, OpenCode, Codex, Cursor) need configuration files — AGENTS.md, skills, rules. Today you copy them between projects, they drift, and switching between setups means manually swapping files.

csaw mounts these files from a central registry using symlinks. When you're done, unmount. When you switch tasks, switch profiles. Your project's git history stays clean.

Copy & paste csaw
Install Copy files into repo Symlink from registry
Update Re-copy, hope nothing drifted Pull registry, links update live
Undo Delete files, hope you got them all csaw unmount — originals restored
Switch Manual file swapping csaw mount --profile frontend
Git Config files in your history Hidden from git automatically
Tools Manually place in each tool's dir Auto-detected, auto-mounted

Install

# Recommended (any platform)
uv tool install csaw

# macOS / Linux
brew install --cask csaw-ai/tap/csaw

# Windows
scoop bucket add csaw-ai https://github.com/csaw-ai/scoop-bucket
scoop install csaw

macOS note (Homebrew): If you see "Apple could not verify", run:

xattr -d com.apple.quarantine "$(which csaw)"

This is normal for unsigned CLI tools distributed via Homebrew casks.

Other install methods
# pipx
pipx install csaw

# Go from source (requires Go 1.22+)
go install github.com/csaw-ai/csaw/cmd/csaw@latest

Quick Start

1. Create or add a source

A source is any git repo (or local directory) containing agent files and skills.

# Add a team registry (auto-clones)
csaw source add team git@github.com:your-org/ai-config.git

# Or create your own
csaw init ~/my-ai-config
csaw source add personal ~/my-ai-config --priority 10

2. Mount a profile

Profiles are named sets of files defined in a csaw.yml in the source:

# csaw.yml
backend:
  include:
    - agents/base.md
    - agents/go.md
    - skills/code-review/**
    - skills/testing/**

frontend:
  extends: backend
  include:
    - agents/react.md
    - skills/react-patterns/**

Mount one:

csaw mount --profile team/backend

Or just run csaw mount — you'll get an interactive picker showing all available profiles with descriptions.

3. Inspect what's active

csaw inspect
csaw inspect

  project:       /home/you/api-server
  csaw home:     /home/you/.csaw
  sources:       1
  mounted:       12

Sources
  team (remote) → /home/you/.csaw/sources/team

Mounted files

  team
    ✔ .claude/skills/code-review/SKILL.md
    ✔ .claude/skills/testing/SKILL.md
    ✔ .agents/skills/code-review/SKILL.md
    ✔ .agents/skills/testing/SKILL.md
    ✔ AGENTS.md
    ✔ agents/base.md
    ✔ agents/go.md
    ...

4. Work normally

Open your AI tool. Skills are mounted into tool-native directories (.claude/skills/, .opencode/skills/, .agents/skills/) where they're automatically discovered. AGENTS.md is at your project root.

5. Clean up

csaw unmount           # remove everything, restore originals
csaw mount --restore   # re-mount what was there before

How It Works

csaw uses symlinks, not file copies. Your registry is the source of truth:

your-project/
  .claude/skills/code-review/SKILL.md  →  ~/.csaw/sources/team/skills/code-review/SKILL.md
  .agents/skills/code-review/SKILL.md  →  ~/.csaw/sources/team/skills/code-review/SKILL.md
  AGENTS.md                            →  ~/.csaw/sources/team/AGENTS.md
  • Skills mount into tool-native directories (.claude/skills/, .opencode/skills/, .agents/skills/). These are typically gitignored, so git stays clean.
  • AGENTS.md and other non-skill files mount at the project root, with entries in .git/info/exclude to keep them out of git status.
  • csaw checks .gitignore first — if a path is already covered, no extra exclude is needed.

Git visibility

By default, mounted files are hidden from git. To make a file visible:

csaw show AGENTS.md    # remove from git exclude → visible to git
csaw hide AGENTS.md    # add back → hidden from git

Commands

Command What it does
csaw init [dir] Scaffold a new registry with csaw.yml, agents/, skills/.
csaw mount [patterns] Mount files. Replaces any previous mount. Interactive picker if no args.
csaw mount --profile name Mount a named profile.
csaw mount --restore Re-mount the previous selection.
csaw unmount [patterns] Remove mounted files, restore originals.
csaw inspect Show full state: sources, mounted files, health.
csaw inspect --source name Browse a source's contents.
csaw check Detect broken or drifted symlinks.
csaw update Repair drifted links.
csaw diff path Show diff between mounted file and its source.
csaw pull [source] Pull latest from remote sources.
csaw push [source] -m "msg" Commit and push source changes.
csaw pin source@ref Pin a source to a branch or tag for this project.
csaw unpin source Unpin, return to default branch.
csaw fork source/path Copy a file into another source for personal editing.
csaw show path Make a mounted file visible to git.
csaw hide path Hide a mounted file from git.
csaw source add name url Add a source (auto-clones remote).
csaw source remove name Remove a source.
csaw source clone name dir Clone a remote source locally for contributing.
csaw source list List configured sources.
csaw status Show mounted files, sources, stashed originals.
csaw version Print version.

Flags

Flag Commands What it does
--profile name mount Use a named profile for file selection.
--exclude glob mount Exclude files matching a pattern.
--include-ignored mount Include files hidden by .csawignore.
--force mount Overwrite conflicts, stash originals.
--skip-conflicts mount Skip files that conflict.
--restore mount Re-mount the previous selection.
--keep mount Keep existing mounts instead of replacing them.
--tools list mount Target tools (e.g., --tools claude,cursor).
--source name inspect Show details for a specific source.
--into source fork Target source to fork into.
--name name init Registry name (defaults to directory name).
--priority n source add Source priority (higher wins on conflict).

Profiles

Profiles live in csaw.yml at the root of any source. They support glob patterns and inheritance:

base:
  description: Shared foundation for all profiles
  include:
    - AGENTS.md
    - skills/code-review/**

backend:
  description: Go backend development
  extends: base
  include:
    - agents/go.md
    - skills/go-patterns/**
    - skills/testing/**

security:
  extends: base
  include:
    - skills/security-review/**
  exclude:
    - skills/testing/**

Profiles from different sources can reference each other: extends: team/base.

Registry Structure

A csaw source is just a directory (usually a git repo) with agent files and an optional csaw.yml:

my-ai-config/
  csaw.yml              # profiles (optional)
  .csawignore           # files hidden from default mounts (optional)
  AGENTS.md             # root agent instructions
  agents/
    base.md
    go.md
    react.md
  skills/
    code-review/
      SKILL.md
    testing/
      SKILL.md
    go-patterns/
      SKILL.md

Every file is standard markdown — usable without csaw.

Contributing

See CONTRIBUTING.md for workflow, validation, and repo standards.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

csaw-0.2.2-py3-none-win_arm64.whl (11.8 MB view details)

Uploaded Python 3Windows ARM64

csaw-0.2.2-py3-none-win_amd64.whl (12.6 MB view details)

Uploaded Python 3Windows x86-64

csaw-0.2.2-py3-none-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded Python 3musllinux: musl 1.2+ x86-64

csaw-0.2.2-py3-none-musllinux_1_2_aarch64.whl (11.5 MB view details)

Uploaded Python 3musllinux: musl 1.2+ ARM64

csaw-0.2.2-py3-none-manylinux_2_17_x86_64.whl (12.2 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64

csaw-0.2.2-py3-none-manylinux_2_17_aarch64.whl (11.5 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ ARM64

csaw-0.2.2-py3-none-macosx_11_0_arm64.whl (11.8 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

csaw-0.2.2-py3-none-macosx_10_9_x86_64.whl (12.4 MB view details)

Uploaded Python 3macOS 10.9+ x86-64

File details

Details for the file csaw-0.2.2-py3-none-win_arm64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-win_arm64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: Python 3, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-win_arm64.whl
Algorithm Hash digest
SHA256 419812f82d28bbd6fe62fbe63dfe435bf1fa4a0367f79e0dbeba1e66ad8e0caf
MD5 371bcad8684e7826f305a9d1373788e4
BLAKE2b-256 825514b75f05a5f3394ed422f0bfc1f8b225bcf3e29a9864e2aee1baccdad659

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-win_arm64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-win_amd64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-win_amd64.whl
  • Upload date:
  • Size: 12.6 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 1beb7cbfbea231fdf868c3fbaab8df3fc3621f058408bb57d7c1e3f3c53579d5
MD5 720036d4ad28631e23d7e5bc407cc749
BLAKE2b-256 7255b67f02ebf22165dfae4ff6acf9683d882293d9e3f0ca282a7162cba77c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-win_amd64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: Python 3, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e77657d61daf182005fabd7bb9c3c68fdc038a65db78c5420a1686e4be50cd13
MD5 8cd8444690aa03963cd9eb978f27cb12
BLAKE2b-256 dff224eb57b07c2f375813c54856308a34d878a93a2da8de241b49b837d7cc2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-musllinux_1_2_x86_64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for csaw-0.2.2-py3-none-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c50ce2f6b32433e6333ca8317d19149359aa93862c1264639dc98e14aa9a0baa
MD5 8d1dcac73fe10116c691a4b9a1d4b61d
BLAKE2b-256 cdbbb1631a31ede7ed5965e57f8e4d1e97ee2d57f4f6ac8e37b577e96a555085

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-musllinux_1_2_aarch64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-manylinux_2_17_x86_64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-manylinux_2_17_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: Python 3, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 31f4d6a7d9f1f1a577271218f85415c65ce943e97c62491b0bbd18afa3ac8459
MD5 67c875be2ed66a542ec48574117e6b22
BLAKE2b-256 c7b4ee82478900c693ed5a18818e8111a4335adbfd204e1d18a813fb71148c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-manylinux_2_17_x86_64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for csaw-0.2.2-py3-none-manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bf9268e590173d5fbe1ee9d19d5554073346baae0bdeb2f2261af7c3f86221e3
MD5 81df6dab3729ed788cf0baa5e82a54e4
BLAKE2b-256 2f2bcdf8e2d165344aeef293dd238affbf188f8bfb9d7d2441ab689a87458bba

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-manylinux_2_17_aarch64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 11.8 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 821636cd0a50c5960ffe2c108fe1db1e000aa00453e99e9acfdc88d3f232e55f
MD5 58fbe0784aeabaea20aca05c22060fe7
BLAKE2b-256 fd7513407e9f5462604df750ce24d58e3d734ffcfc78f56299d3264aa9fcd272

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-macosx_11_0_arm64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file csaw-0.2.2-py3-none-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: csaw-0.2.2-py3-none-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 12.4 MB
  • Tags: Python 3, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for csaw-0.2.2-py3-none-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 092d5261980fbb31c161d21c3a9402c617052f77a300a01b037f58ef7bf55e59
MD5 d7fd18d9c416a4aaf28a3af7f3fb4a20
BLAKE2b-256 2a6d30a69518a4c53a6b5cb67067caab07fc13ffcc2bc5f7f02f3b8f324f39f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for csaw-0.2.2-py3-none-macosx_10_9_x86_64.whl:

Publisher: release.yml on csaw-ai/csaw

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page