MixerSystem workflow engine package
Project description
MixerSystem
MixerSystem is a Python package that runs AI-powered workflows for task creation, planning, implementation, rule updates, and documentation — driven by the context you define in a central .mixer/ folder in your project.
The workflows are built around agentic tools such as Claude Code, Gemini CLI, and Codex CLI.
You configure your project's .mixer/ folder with instructions that shape how each workflow behaves, run mixersystem sync, and MixerSystem generates runtime config and a Claude Code skill wired to your project context. From there, you can use the wired Mixer skill in Claude Code to start running these workflows.
See the details of provided workflows at the bottom of this doc.
Setup
pip install mixer-system
mixersystem sync
To target a different project: mixersystem sync --project_root=/path/to/project
After upgrading (pip install -U mixer-system), re-run mixersystem sync to refresh generated files.
sync generates: .mixer/settings.json, .mixer/README.md, .claude/skills/mixer/SKILL.md, and Claude Code hooks in .claude/settings.json
Optional: Linear Integration
Set LINEAR_API_KEY in your project .env and configure .mixer/settings.json:
{ "linear": { "team_prefix": "IOSAI", "team_id": "" } }
Workflows
MixerSystem provides five workflows built around fundamental actions. The core delivery sequence is task → plan → work → update → upgrade. Each action produces a primary artifact in the task's work folder.
Task
Creates and configures task.md — the starting point for any work item. You provide a task ID, title, and description. MixerSystem routes the task to the right modules based on your project context (or you specify modules explicitly). Supports syncing tasks to and from Linear.
Plan
Produces plan.md from the task. An agentic builder drafts the plan using your project context, then a review cycle (completeness, rules) checks and revises it. Supports parallel branch planning — multiple builders draft independently, then a merger reviews and synthesizes feedback for the builder to write the final plan. You can choose which provider runs the builder (Claude, Gemini, or Codex).
Work
Implements the plan. A builder agent writes the code, then a tester agent validates it in a build/test loop (up to a configurable number of iterations). The loop continues until tests pass or the iteration limit is reached. Produces work.md with build status. Supports auto-commit and auto-merge when running inside a git repo.
Update
Produces update.md — analyzes completed work and suggests documentation updates to existing doc.md files.
Upgrade
Produces upgrade.md — mines agent logs for generalizable lessons and suggests improvements to project rules.
.mixer/ Configuration
Module-specific instructions live under .mixer/modules/, with one folder per module:
.mixer/
modules/
cli/
plan.md # how to create plans for this module
work.md # how to build work for this module
generator/
work.md # how to build work for this module
Each module in the codebase carries a doc.md with a name field in its frontmatter — the stable identity anchor. The folder name in .mixer/modules/ matches the module name.
Workflows resolve context by walking the module's ancestor chain in the settings tree, collecting doc and rules files along the way.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mixer_system-0.1.7.tar.gz.
File metadata
- Download URL: mixer_system-0.1.7.tar.gz
- Upload date:
- Size: 41.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b1632b1b856c8728d86fa9a31337654930d81a0f497989397035748f2db6328
|
|
| MD5 |
b06307c7b24ce2a06839560e17b71a3b
|
|
| BLAKE2b-256 |
7083d0ee4c2058c4e940f73a2f31f4ada99390d2dbc137977915c0396ec47bde
|
File details
Details for the file mixer_system-0.1.7-py3-none-any.whl.
File metadata
- Download URL: mixer_system-0.1.7-py3-none-any.whl
- Upload date:
- Size: 55.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68303654fba422ad89aa653c33c482bdd186a998986065161d1ab4760c656a85
|
|
| MD5 |
f4f7b07e68fa8e875612c83fa105ea59
|
|
| BLAKE2b-256 |
a82eea70c58d37c68c527b631b480688fa316623c24be1cfd0ce529bb0d23226
|