Metadata-Version: 2.4
Name: skillsmith
Version: 0.5.0
Summary: The premier agentic skills library for professional AI engineering
Project-URL: Homepage, https://github.com/ApexIQ/skillsmith
Project-URL: Issues, https://github.com/ApexIQ/skillsmith/issues
Project-URL: Repository, https://github.com/ApexIQ/skillsmith.git
Author-email: ApexIQ <contact@apexiq.ai>
License-File: LICENSE
Keywords: agents,ai,productivity,scaffolding,skills,skillsmith
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: click>=8.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: requests>=2.25.0
Requires-Dist: rich>=10.0
Provides-Extra: mcp
Requires-Dist: mcp>=1.0.0; extra == 'mcp'
Description-Content-Type: text/markdown

# skillsmith

[![PyPI version](https://img.shields.io/pypi/v/skillsmith.svg)](https://pypi.org/project/skillsmith/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

**One command to make your repo agent-ready.**

`skillsmith` gives AI coding assistants the project context they need to work reliably: structure, rules, state files, and reusable skills. It bootstraps a portable `.agent/` workspace, wires platform-specific instruction files, and can expose skills over MCP for on-demand use.

## Why skillsmith

Without project structure, agents lose context, repeat mistakes, and drift.

With `skillsmith`, every repo gets:

- A standard agent workspace (`.agent/`)
- Shared project memory (`PROJECT.md`, `ROADMAP.md`, `STATE.md`)
- Platform-specific instruction files (Claude, Gemini, Cursor, Windsurf, Copilot)
- A skill layer for repeatable workflows and better execution quality
- Optional MCP server for dynamic skill retrieval

## Install

```bash
pip install skillsmith
```

For MCP support:

```bash
pip install skillsmith[mcp]
```

## 60-Second Quick Start

```bash
skillsmith init
```

This scaffolds:

- `AGENTS.md`
- `CLAUDE.md`, `GEMINI.md`
- `.cursorrules`, `.cursor/rules/skillsmith.mdc`
- `.windsurfrules`
- `.github/copilot-instructions.md`
- `.agent/` with state files, guides/plans/workflows, and starter skills

## Core Capabilities

### 1) Project Bootstrapping

```bash
skillsmith init
skillsmith init --minimal
skillsmith init --agents-md-only
skillsmith init --all
skillsmith init --category <category>
skillsmith init --tag <tag>
```

### 2) Skill Discovery and Management

```bash
skillsmith list
skillsmith list --list-categories
skillsmith list --category <category>
skillsmith list --tag <tag>

skillsmith add <skill-name>
skillsmith add <github-directory-url>

skillsmith update
skillsmith update --force

skillsmith lint
skillsmith lint --local
skillsmith lint --spec agentskills
```

### 3) Workflow and Health Tooling

```bash
skillsmith compose "build a saas mvp"
skillsmith doctor
skillsmith doctor --fix
skillsmith budget
```

### 4) MCP Server

Run via stdio (default):

```bash
skillsmith serve
```

Run via HTTP:

```bash
skillsmith serve --transport http --host localhost --port 47731
```

MCP tools exposed:

- `list_skills`
- `get_skill(name)`
- `search_skills(query)`
- `compose_workflow(goal)`

## Platform Integration

### Claude Code

```bash
claude mcp add skillsmith -- skillsmith serve
```

HTTP mode:

```bash
claude mcp add --transport http skillsmith http://localhost:47731/mcp
```

### Cursor (`.cursor/mcp.json`)

```json
{
  "mcpServers": {
    "skillsmith": {
      "command": "skillsmith",
      "args": ["serve"]
    }
  }
}
```

## Current Status

- Package version: `0.4.0`
- CLI scaffolding and management commands are implemented
- Starter lifecycle skills are bundled
- MCP server is available with optional dependency install

## Development

Run from source:

```bash
PYTHONPATH=src python -m skillsmith.cli --help
```

## License

MIT. See `LICENSE`.
