Back to index

agent-sync Configuration Reference

Overview

agent-sync is a tool for managing and converting context and command definitions for AI agents such as Claude, Roo, Cline, and Copilot. This reference documents all configuration options available in the agent-sync.yml file.

Documentation Structure

The configuration documentation has been organized into several focused documents:

Configuration File Location

By default, agent-sync looks for the following files in the current directory:

A specific file path can also be directly specified using the --config command line option.

Basic Structure

The configuration file can be organized in two formats: standard or simplified.

Standard Format

configVersion: "1.0"
projects:
  project-name:
    # Project-specific configuration
user:
  # Global user-level configuration

Simplified Format (Single Project)

configVersion: "1.0"
outputDirs:
  - ~/projects/my-app
tasks:
  # Project tasks defined directly at root level

Previous Next
  Configuration Reference

Back to index