Metadata-Version: 2.5
Name: agents-tool
Version: 0.1.0
Summary: CLI tool for managing AI agents, skills and harness
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: click>=8.1.0
Requires-Dist: gitpython>=3.1.0
Requires-Dist: pyyaml>=6.0
Description-Content-Type: text/markdown

# Agents Tool

CLI tool for managing AI agents, skills and harness.

## Installation

```bash
pip install agents-tool
```

## Usage

```bash
# Initialize configuration
agents init

# Edit config to add your repos
vim ~/.config/agents/config.yaml

# Import/update all agents
agents gou

# List installed agents/skills/harness
agents list
```

## Configuration

Edit `~/.config/agents/config.yaml`:

```yaml
repos:
  - url: git@github.com:your-username/your-agents.git
    user: your-username
    branch: main
```

## Agent Repo Structure

```
your-agents/
├── agents/
│   └── reviewer/
│       ├── agent.yaml
│       └── prompt.md
├── skills/
│   └── code-review/
│       └── SKILL.md
└── harness/
    └── opencode/
        └── config.json
```
