Quick Start
This guide walks through gest's core workflow: initializing a store, creating tasks and artifacts, linking them together, and searching.
Initialize a Store
Before using gest you need to initialize a data store. By default, gest uses a global store in your system data directory (~/.local/share/gest/ on Linux, ~/Library/Application Support/gest/ on macOS):
gest initTo keep data inside your repository instead, use the --local flag. This creates a .gest/ directory in the current project:
gest init --localCreate a Task
Tasks track units of work. Create one by providing a title:
gest task create "Implement auth middleware"You can add details inline:
gest task create "Add rate limiting" \
-d "Implement token-bucket rate limiting on API endpoints" \
-p 1 \
-s open \
--tags "api,security" \
--phase 2-dsets the description (omit it to open your$EDITOR)-psets priority (0is highest,4is lowest)-ssets the initial status (open,in-progress,done, orcancelled)--tagsattaches comma-separated tags--phaseassigns an execution phase for parallel grouping
List your tasks to see what you have:
gest task listCreate an Artifact
Artifacts store documents like specs, ADRs, RFCs, and notes. You can create one from a file:
gest artifact create --source auth-spec.md --type spec --tags "auth"Or write the body inline:
gest artifact create \
-t "Rate Limiting Design" \
-b "Token-bucket algorithm with per-user quotas." \
-k adr \
--tags "api,design"-tsets the title (auto-extracted from the first#heading if omitted)-bprovides inline body content-k/--typesets the artifact type (e.g.spec,adr,rfc,note)--sourcereads body content from a file
List artifacts to see them:
gest artifact listLink Entities
Tasks can be linked to other tasks or to artifacts. Gest supports several relationship types: blocks, blocked-by, child-of, parent-of, and relates-to.
Link two tasks (reciprocal links are created automatically):
# Use the task ID or a unique prefix
gest task link <task-id> blocked-by <other-task-id>Link a task to an artifact with the --artifact flag:
gest task link <task-id> relates-to <artifact-id> --artifactView a task's details to see its links:
gest task show <task-id>Search
Search across all tasks and artifacts by keyword:
gest search "auth"Add --expand to see full details for each result:
gest search "auth" --expandUse --json to get machine-readable output for scripting:
gest search "auth" --jsonBy default, resolved tasks and archived artifacts are excluded. Pass --all to include them:
gest search "auth" --allNext Steps
- Read Core Concepts to understand the data model in depth
- Explore the CLI reference for the full set of commands