Quick Start
1. Install the CLI
curl -fsSL https://aynig.org/install.sh | bashIf your PATH does not include ~/.local/bin, add it to your shell profile.
2. Initialize the repository
aynig initThis creates:
.aynig/with starter files.worktrees/for ephemeral worktrees- a
.worktrees/entry in.gitignore
3. Add a command
Create a command directory:
mkdir -p .aynig/commandCreate an executable file at .aynig/command/build with this content:
#!/usr/bin/env bashset -euo pipefail
echo "Build requested: $AYNIG_BODY"Make it executable:
chmod +x .aynig/command/build4. Create a commit with a state
chore: request a build
Build the project.
aynig-state: build5. Run AYNIG
aynig runNext steps: