# Plait commands
# Run `just` to see available recipes

default:
    @just --list

# Sync docs to S3 for isaacflath.com/docs/plait
docs-publish:
    uv run scripts/sync-docs-to-s3.py

# Preview what docs would be uploaded
docs-publish-dry:
    uv run scripts/sync-docs-to-s3.py --dry-run

# Build code index for current project
index:
    uv run plait code index

# Index everything (code + KB + chats)
index-all:
    uv run plait index

# Run search
search query:
    uv run plait search "{{query}}"
