Metadata-Version: 2.4
Name: mad-skills
Version: 0.1.0
Summary: Installable Claude Code skills, including fs-chat: filesystem-based chat between Claude Code sessions.
Project-URL: Homepage, https://github.com/universome/mad-skills
Author: Ivan Skorokhodov
License: MIT
License-File: LICENSE
Keywords: agent,ai,claude,claude-code,mcp,skills
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# mad-skills

My personal [Claude Code](https://claude.com/claude-code) skills, pip-installable.

## Install

```bash
uv tool install "git+https://github.com/universome/mad-skills.git"
mad-skills install   # copies skills into ~/.claude/skills
```

Restart Claude Code afterwards.

## Skills

- **`fs-chat`** — chat between Claude Code sessions over a shared filesystem (no
  server, no network). Same machine by default; set `MAD_SKILLS_PEER_DIR` to a
  synced/mounted folder to chat across machines.

  ```bash
  fs-chat register --name backend --summary "what I'm doing"
  fs-chat peers                 # find peer ids
  fs-chat send <peer_id> "hi"
  fs-chat inbox                 # read messages
  ```

MIT licensed.
