Metadata-Version: 2.4
Name: aiskill
Version: 3.0.2
Summary: Automatically learn from your workflows and turn them into intelligent, context-aware skills
Author: MaTriXy
License: MIT
Project-URL: Homepage, https://github.com/MaTriXy/auto-skill
Project-URL: Documentation, https://MaTriXy.github.io/auto-skill/
Project-URL: Repository, https://github.com/MaTriXy/auto-skill
Project-URL: Issues, https://github.com/MaTriXy/auto-skill/issues
Project-URL: Changelog, https://github.com/MaTriXy/auto-skill/blob/main/CHANGELOG.md
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML>=6.0
Provides-Extra: advanced
Requires-Dist: pygls>=1.3.0; extra == "advanced"
Requires-Dist: tree-sitter>=0.21.0; extra == "advanced"
Requires-Dist: tree-sitter-python; extra == "advanced"
Requires-Dist: numpy>=1.24.0; extra == "advanced"
Requires-Dist: scikit-learn>=1.3.0; extra == "advanced"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Provides-Extra: all
Requires-Dist: aiskill[advanced,dev]; extra == "all"
Dynamic: license-file

<p align="center">
  <img src="https://raw.githubusercontent.com/MaTriXy/auto-skill/main/website/static/img/logo.png" alt="Auto-Skill Logo" width="120" />
</p>

# Auto-Skill

**Automatically learn from your workflows and turn them into intelligent, context-aware skills.**

Auto-Skill observes your coding sessions across 10 supported agents, detects repeated patterns, and generates reusable SKILL.md files. Skills are automatically shared across all your installed agents. It combines local pattern detection with external skill discovery, cross-agent sharing, and anonymous telemetry.

[![PyPI](https://img.shields.io/pypi/v/aiskill)](https://pypi.org/project/aiskill/)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
[![Docs](https://img.shields.io/badge/docs-Docusaurus-blue.svg)](https://MaTriXy.github.io/auto-skill)

## Quick Start

```bash
npx skills add MaTriXy/auto-skill
```

### Install CLI

```bash
# With pip
pip install aiskill

# With uv
uv pip install aiskill
```

Once installed, the plugin automatically:
1. Records your tool usage patterns
2. Detects repeated workflows (3+ occurrences)
3. Offers to create skills from high-confidence patterns

## CLI

```bash
auto-skill init                # Initialize config and directories
auto-skill discover            # Discover skills for current project
auto-skill search "query"      # Search external skills
auto-skill stats               # Show adoption statistics
auto-skill graduate            # Manage skill graduation
auto-skill agents list         # List known coding agents
auto-skill agents detect       # Detect installed agents
auto-skill lock status         # Show lock file status
auto-skill lock verify         # Verify skill integrity (SHA-256)
auto-skill lock list           # List locked skills
auto-skill telemetry report    # Show effectiveness report
auto-skill telemetry events    # Show raw events
auto-skill version             # Show version
```

All commands support `--json` output.

## Key Features

- **Pattern Detection** — Automatically detects repeated tool sequences across sessions
- **Session Analysis** — Identifies intent (debug, implement, refactor) and workflow types (TDD, etc.)
- **18 Design Patterns** — Architectural, coding, and workflow pattern recognition
- **External Discovery** — 27,000+ community skills from [Skills.sh](https://skills.sh)
- **Mental Model Integration** — Semantic codebase understanding via [@mentalmodel/cli](https://github.com/Michaelliv/mental)
- **Multi-Agent Support** — 10 coding agents (Claude Code, Codex, Cursor, Aider, etc.) with cross-agent skill sharing via symlinks
- **Provider System** — Pluggable skill discovery (local, Skills.sh, RFC 8615 well-known endpoints)
- **Lock File** — SHA-256 integrity verification with atomic writes
- **Spec Compliance** — Generated skills validated against [agentskills.io](https://agentskills.io) spec
- **Path Security** — Traversal prevention, null byte blocking, unicode normalization
- **Confidence Evolution** — Skills improve from 50% (external) → 75% (proven) → 85% (graduated)
- **Anonymous Telemetry** — Privacy-first usage tracking ([details below](#telemetry))

## Documentation

**Full documentation: [https://MaTriXy.github.io/auto-skill](https://MaTriXy.github.io/auto-skill)**

## Development

```bash
git clone https://github.com/MaTriXy/auto-skill.git
cd auto-skill
uv sync --all-extras
uv run pytest tests/ -v
```

## Telemetry

This tool collects **anonymous, aggregate metrics** (event types, counts, timing, OS) to improve the experience. No PII, search queries, file paths, or session data is collected.

**Disable:**
```bash
export AUTO_SKILL_NO_TELEMETRY=1  # or DO_NOT_TRACK=1
```

Automatically disabled in CI. Source: [`core/telemetry.py`](core/telemetry.py)

## License

MIT License - see [LICENSE](LICENSE)

---

**Version 3.0.2** | [Repository](https://github.com/MaTriXy/auto-skill) | [Issues](https://github.com/MaTriXy/auto-skill/issues) | [Changelog](CHANGELOG.md)
