Metadata-Version: 2.4
Name: vibeshed
Version: 0.1.0
Summary: Vibe Coding Framework for Personal Automations — agent-agnostic CLI for Trigger → Action → Result jobs.
Project-URL: Homepage, https://github.com/vibeshed/vibeshed
Project-URL: Issues, https://github.com/vibeshed/vibeshed/issues
Author: VibeShed
License: MIT License
        
        Copyright (c) 2026 VibeShed contributors
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: agents,automation,claude,cli,framework
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Requires-Dist: typer>=0.12.0
Provides-Extra: dev
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# VibeShed

A lightweight, agent-agnostic framework for building personal automations.

Every automation in VibeShed is a **Trigger → Action → Result** flow, defined as a folder of plain files (`config.yaml`, `sequence.md`, `scripts/main.py`). Agents read those files to orchestrate work; the `vibeshed` CLI executes them so cron, CI, or any other trigger source can run jobs without an agent in the loop.

## Install

```sh
pipx install vibeshed
```

## Quickstart

```sh
vibeshed init my-automations
cd my-automations
vibeshed new daily-briefing
# edit jobs/daily-briefing/scripts/main.py
vibeshed run daily-briefing
vibeshed logs daily-briefing
```

## Commands

| Command | Purpose |
| --- | --- |
| `vibeshed init [path]` | Scaffold a new automations repo. |
| `vibeshed new <slug>` | Create a new job from the template. |
| `vibeshed run <slug>` | Execute a job's `scripts/main.py` and record the run. |
| `vibeshed list` | List all registered jobs. |
| `vibeshed validate` | Lint `registry.yaml` and job folder structure. |
| `vibeshed status` | Show framework version and any drift in managed files. |
| `vibeshed update [--dry-run]` | Pull the latest framework files with three-way merge. |
| `vibeshed logs <slug> [-n N]` | Tail recent logs for a job. |
| `vibeshed doctor` | Check environment, dependencies, and structure. |
| `vibeshed eject` | Stop tracking framework files — full ownership, no more updates. |

## How updates work

Files like `shared/`, `AGENTS.md`, and `CLAUDE.md` are **framework-managed**. VibeShed records their original SHAs in `.vibeshed/manifest.json` so `vibeshed update` can:

- Cleanly overwrite files you haven't touched.
- Preserve files where only you changed them.
- Three-way merge files that both you and the framework changed (delegated to `git merge-file`).
- Preserve any content you add **outside** the `<!-- vibeshed:managed:start -->` / `<!-- vibeshed:managed:end -->` markers in `AGENTS.md`, `CLAUDE.md`, `.gitignore`, and `requirements.txt`.

`registry.yaml`, `jobs/`, `state/`, `logs/`, and `.env` are never touched by `update`. They are 100% yours.

If you outgrow the framework, `vibeshed eject` strips the markers and the manifest so you can take full ownership without forking.

## License

MIT
