DOCUMENTATION
v0.1.0GITHUB
Quick Start
01 / 073 sections

Getting Started

STACC is a high-performance configuration suite designed to bridge the gap between human intent and machine execution through standardized agent behavior.

Use this page as the first pass through STACC: install the binary, define agent behavior, then run the execution loop.

#01

Installation

Deploy the STACC binary to your local environment using the universal installer.

TerminalCopy
curl -fsSL https://stacc.fyi/install.sh | bash
#02

Define Your Agent

Agents are defined via .stacc files in your project root. They govern how the LLM interacts with your codebase.

agent.staccyaml
agent:
  name: "TS_ARCHITECT"
  role: "Strict TypeScript development"
  constraints:
    - "No 'any' types allowed"
    - "Prefer functional patterns"
    - "Auto-document exported functions"
  hooks:
    - pre-commit: "stacc validate"
#03

Execution

Run the daemon to start monitoring files and enforcing rulesets in real-time.