Metadata-Version: 2.4
Name: pactkit-copilot
Version: 2.15.1
Summary: PactKit adapter for GitHub Copilot
Author: Slim
License: MIT
Project-URL: Homepage, https://github.com/pactkit/pactkit-copilot
Project-URL: Repository, https://github.com/pactkit/pactkit-copilot
Project-URL: Documentation, https://github.com/pactkit/pactkit-copilot#readme
Project-URL: Issues, https://github.com/pactkit/pactkit-copilot/issues
Keywords: ai,agent,copilot,github,github-copilot,code-assistant,code-quality,developer-tools,spec-driven,devops,scaffold,tdd,pdca
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: pactkit>=2.15.1

# pactkit-copilot

PactKit adapter for GitHub Copilot — project-level deployment to `.github/`.

## Install

```bash
pip install pactkit pactkit-copilot
```

## Usage

```bash
# Deploy PactKit to a project for GitHub Copilot
cd your-project
pactkit init --format copilot

# Then open the project in your IDE and use /project-init
```

## What it deploys

| Asset | Location |
|-------|----------|
| Skills | `.github/skills/{name}/SKILL.md` |
| Agents | `.github/agents/{name}.md` |
| Commands | `.github/prompts/{name}.prompt.md` |
| Instructions | `.github/copilot-instructions.md` |

## Key differences from other adapters

- **Project-level only**: Everything goes into `.github/` (no user-level `~/` directory)
- **Per-project init**: Each new project requires `pactkit init --format copilot`
- **Rules inlined**: Copilot doesn't support `@include`, so rules are inlined into command prompts
- **Two-step bootstrap**: `pactkit init` (terminal) → `/project-init` (IDE)

## License

MIT
