An AI pipeline that turns raw video clips into an editable CapCut project for short-form reel editing.
Project description
LasagnaStack
An AI pipeline that turns raw video clips into an editable CapCut project for short-form reel editing.
It is as simple as:
lasagnastack make ./my_clips/ --out ./my_output_folder/
where...
./my_clips/: an existing folder of raw video clips in MP4/MOV format + one .txt creator brief.
./my_output_folder/: a folder created by the pipeline to store its output, including:
- A copy of the AI-generated CapCut project folder that will already have been loaded into CapCut Desktop.
- A
post_caption.txtfile that contains the AI-generated post caption for the reel. - Intermediate output files from each pipeline stage for debugging and logging.
- Cached files from various pipeline stages for faster re-runs.
The pipeline runs in seven sequential stages:
- ingest (uses ffmpeg) →
- analyse (uses LLM APIs) →
- direct (uses LLM APIs) →
- critique loop (uses LLM APIs) →
- enhance (uses LLM APIs) →
- render (uses pyCapCut) →
- post caption (uses LLM APIs)
For users...
Installation
Install via Homebrew:
brew tap jyjulianwong/lasagnastack
brew install lasagnastack
Install via PyPI:
pip install lasagnastack
Authentication
You will need to provide your own API keys for the LLM APIs you use. The required API key depends on the value of LSNSTK_LLM_MODEL.
Gemini (e.g. gemini/gemini-2.5-flash)
Get a key at aistudio.google.com/apikey and set it as an environment variable:
export LSNSTK_LLM_MODEL=gemini/gemini-2.5-flash
export LSNSTK_LLM_GEMINI_API_KEY=your-key-here
OpenRouter (e.g. openrouter/deepseek/deepseek-v3.2)
Get a key at openrouter.ai/settings/keys and set these environment variables:
export LSNSTK_LLM_MODEL=openrouter/deepseek/deepseek-v3.2
export LSNSTK_LLM_OPENROUTER_API_KEY=your-key-here
NOTE: Stage 2 (analyse) uploads video to the Gemini Files API and always requires
LSNSTK_LLM_GEMINI_API_KEY, even when the other stages use an OpenRouter model.
How to add skills
Skills are used to customise the pipeline to your own social media account's styles and branding, or use pre-written skills from marketplaces to cater for different types of reel content.
A skill is a Markdown (.md) file injected into the direct, critique, and enhance stage prompts. Pass one to the make command via the --skill flag:
lasagnastack make ./my_clips/ --out ./my_output_folder/ --skill ./my_skill.md
How to optimize a skill file
The optimize-skill command analyses a folder of human-edited CapCut drafts (your "trainset") and generates an improved skill file, or writes a new one from scratch if you do not have an existing skill yet.
lasagnastack optimize-skill ./my_trainset/ --out ./skill_output/
To iteratively improve an existing skill file instead of starting from scratch:
lasagnastack optimize-skill ./my_trainset/ --out ./skill_output/ --skill ./my_skill.md
trainset folder layout: each subdirectory inside TRAINSET_DIR must be a CapCut draft folder containing a draft_info.json file (i.e. the raw output from a previous lasagnastack make run, after you have hand-edited the draft in CapCut Desktop and exported the project). The pipeline reads each draft, reconstructs the cut list and style decisions, and uses them as training examples for the LLM.
The optimized skill file is written to OUTPUT_DIR/optimized_skill.md. Pass it to future make runs via --skill.
How to find skill files
Visit the Skills Marketplace to download and use pre-written skills for different types of reel content. Skills are organised in the following folder structure: [CATEGORY] - [AUTHOR_NAME SKILL_NAME (VERSION_TAG)]
How to use the CLI
lasagnastack make
Turn raw clips into a CapCut draft.
usage: lasagnastack make [-h] --out OUTPUT_DIR [--skill SKILL_FILE] [--yes]
[--critique-max-retries N] [--ingest-max-workers N]
[--analyse-max-workers N] INPUT_DIR
positional arguments:
INPUT_DIR Folder containing clips and brief .txt
options:
--out OUTPUT_DIR Destination for the CapCut draft and working files
--skill SKILL_FILE Path to Markdown skill file injected into the direct,
critique, and enhance prompt templates (optional)
--yes, -y Auto-confirm all stage prompts
--critique-max-retries N Maximum # of critique loop retries (default: 2)
--ingest-max-workers N Maximum # of parallel worker processes for `ingest` stage (default: 2)
--analyse-max-workers N Maximum # of concurrent LLM calls for `analyse` stage (default: 4)
lasagnastack optimize-skill
Generate or improve a skill file from human-edited drafts.
usage: lasagnastack optimize-skill [-h] --out OUTPUT_DIR [--skill SKILL_FILE]
[--yes] [--critique-max-retries N]
TRAINSET_DIR
positional arguments:
TRAINSET_DIR Folder of CapCut draft subfolders (each must contain draft_info.json)
options:
--out OUTPUT_DIR Destination for optimized_skill.md and working files
--skill SKILL_FILE Existing skill file to improve (omit to generate from scratch)
--yes, -y Auto-confirm all stage prompts
--critique-max-retries N Maximum # of critique loop retries (default: 2)
Opening the draft in CapCut Desktop (macOS)
If CapCut Desktop is installed, the pipeline automatically:
- Detects
~/Movies/CapCut/User Data/ - Copies all
.mp4/.movfiles from your input folder into the CapCut draft folder — including clips not used on the timeline — so they are immediately available in CapCut's import panel - Rewrites the timeline clip paths in
draft_info.jsonto point to the copied files - Registers the draft in
root_meta_info.jsonso it appears on the CapCut home screen straight away
Open CapCut Desktop after the pipeline finishes — the draft will appear on the home screen under your local projects with all media already linked. Drafts are named LasagnaStack - Reel Name and use that same string as the folder name so they are easy to identify among existing projects.
If CapCut is not installed, the draft is written to <output_dir>/draft/LasagnaStack - {reel_name}/ and you can copy it manually.
This has been tested with CapCut Desktop 8.5.0 on macOS Sequoia 15.6.1. There may be issues with older versions or other operating systems.
For developers...
Get started with development
- Clone the repository.
git clone https://github.com/jyjulianwong/LasagnaStack.git
- Verify that you have a compatible Python version installed on your machine.
python --version
-
Install uv (used as the package manager for this project).
-
Install the development dependencies.
cd LasagnaStack/
uv sync --all-groups
uv run pre-commit install
Set up environment
Copy .env.sample to .env and fill in your values (see Authentication above for the available variables):
cp .env.sample .env
.env is gitignored. Values set in the shell environment take precedence over .env.
Run the pipeline
Prepare an input folder containing your MP4/MOV clips and exactly one .txt brief file, then run:
uv run python -m lasagnastack make ./my_clips/ --out ./drafts/reel_2025_05_05
The pipeline pauses for confirmation between each stage. To skip all prompts:
uv run python -m lasagnastack make ./my_clips/ --out ./drafts/reel_2025_05_05 --yes
Configuration
| Parameter | How to set | Default |
|---|---|---|
| LLM model | LSNSTK_LLM_MODEL env. var. |
gemini/gemini-2.5-flash |
| Gemini API key | LSNSTK_LLM_GEMINI_API_KEY env. var. (required for gemini/ models and Stage 2) |
— |
| OpenRouter API key | LSNSTK_LLM_OPENROUTER_API_KEY env. var. (required for openrouter/ models) |
— |
| Path to skill file | --skill CLI flag |
— |
critique stage maximum # of retries |
--critique-max-retries CLI flag |
2 |
ingest stage maximum # of worker processes |
--ingest-max-workers CLI flag |
2 |
analyse stage maximum # of concurrent LLM calls |
--analyse-max-workers CLI flag |
4 |
| Reasoning token budget | reasoning_max_tokens arg on LLMClient / make_client() |
4000 |
| Reasoning effort level | reasoning_effort arg on LLMClient / make_client() (OpenRouter only) |
None |
| Total output token ceiling | total_max_tokens arg on LLMClient / make_client() (OpenRouter only) |
None |
| MLflow tracking server | MLFLOW_TRACKING_URI env. var. |
sqlite:///$HOME/.lasagnastack/mlflow.db |
| MLflow experiment name | MLFLOW_EXPERIMENT_NAME env. var. |
lasagnastack |
Architecture
Two concrete pipelines share the same Stage / Pipeline / PipelineState base classes in base.py:
ReelPipeline(reel_pipeline.py) — the seven-stage clips-to-draft pipeline described above. Its state isReelPipelineState.OptimizeSkillPipeline(optimize_skill_pipeline.py) — a three-stage pipeline that reads a trainset of human-edited drafts and writes an improved skill file. Its state isOptimizeSkillPipelineState.
Adding, removing, or reordering stages requires only editing the stages list on the relevant pipeline class. See ARCHITECTURE.md for annotated diagrams covering the pipeline data flow, the Stage 4 critique loop, the Stage 6 render + CapCut export, and the extensibility model.
Get started with Jupyter notebooks
- Once the above setup is complete, set up a Python kernel.
source .venv/bin/activate
python -m ipykernel install --user --name=lasagnastack
- Refer to the following common commands.
jupyter kernelspec list
jupyter kernelspec uninstall lasagnastack
- Start the Jupyter server.
jupyter lab
Track LLM costs with MLflow
Every pipeline run is automatically traced with MLflow. Each LLM API call is recorded as a span (prompt, response, token counts, latency, and USD cost). GeminiClient derives cost from a built-in pricing table; OpenRouterClient reads cost directly from the usage.cost field in the API response. Session-level totals are written to the run when the pipeline finishes.
Tracking works out of the box with no setup — runs are written to ~/.lasagnastack/mlflow.db automatically.
To browse past runs, start the MLflow server in a separate terminal:
mlflow server \
--backend-store-uri sqlite:///$HOME/.lasagnastack/mlflow.db \
--host 127.0.0.1 --port 5001
macOS note: port 5000 is reserved by AirPlay Receiver. Use 5001 or higher.
Open http://localhost:5001 in your browser. In Experiments -> lasagnastack -> Traces, each run has three span levels: the top-level pipeline span (ReelPipeline.run), a per-stage span (e.g. AnalyseStage.run), and individual LLM call spans (e.g. GeminiClient._call_api or OpenRouterClient._call_api) nested inside.
Runs are named lasagnastack-{brief_stem}-{4-char-id} and tagged with the model, reel name, and critique_max_retries.
To use a remote MLflow server instead, set MLFLOW_TRACKING_URI as an environment variable:
MLFLOW_TRACKING_URI=http://your-mlflow-server:5001
Note that runs already stored in ~/.lasagnastack/mlflow.db will not appear on a remote server — the two stores are independent.
This repo is cool because...
- The pipeline is modularlised into stages, with each stage being responsible for transforming the global state of the pipeline run (similar to LangGraph). It is easy to add, remove, or reorder stages.
- The pipeline supports "skills" -- each user can write their own skill
.mdfile to customise the pipeline to their own accounts' styles and branding, or use pre-written skills from marketplaces to cater for different types of reel content. Theoptimize-skillcommand closes the loop: point it at a folder of your human-edited CapCut drafts and it generates an improved skill file automatically. - Chain-of-thought reasoning is supported for both Gemini and OpenRouter models, controlled per-client via
reasoning_max_tokens(token budget),reasoning_effort(qualitative level, OpenRouter only), andtotal_max_tokens(total output ceiling, required for some Anthropic models). - Human-in-the-loop is deeply integrated in the design, with each stage prompting the user for confirmation before proceeding to the next stage.
- Prompt caching is enabled to avoid unnecessary LLM calls to reduce latency and cost.
- The tool is deeply integrated with its host machine. It auto-detects CapCut Desktop, copies all source media (timeline clips and unused footage) so the project opens in CapCut with no missing-media errors, no manual steps, all your raw clips already in the import panel, and the timeline editor populated and ready to go.
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 lasagnastack-1.0.17.tar.gz.
File metadata
- Download URL: lasagnastack-1.0.17.tar.gz
- Upload date:
- Size: 55.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4f9df4d5210cbc0cc143cba35c8e5e7dfc18813bf889b8ec2fa58565e3baee6
|
|
| MD5 |
7f1ab2ac3df14bb9b9664c544baefde8
|
|
| BLAKE2b-256 |
7e83da65ee55738269756c0af440e36f9a4b841c0517aa0e61973938e1bcdad4
|
Provenance
The following attestation bundles were made for lasagnastack-1.0.17.tar.gz:
Publisher:
main-deploy.yaml on jyjulianwong/LasagnaStack
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lasagnastack-1.0.17.tar.gz -
Subject digest:
a4f9df4d5210cbc0cc143cba35c8e5e7dfc18813bf889b8ec2fa58565e3baee6 - Sigstore transparency entry: 1615236289
- Sigstore integration time:
-
Permalink:
jyjulianwong/LasagnaStack@37ce0425e9c3a523401da93cdcaee0211d6d1013 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/jyjulianwong
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main-deploy.yaml@37ce0425e9c3a523401da93cdcaee0211d6d1013 -
Trigger Event:
push
-
Statement type:
File details
Details for the file lasagnastack-1.0.17-py3-none-any.whl.
File metadata
- Download URL: lasagnastack-1.0.17-py3-none-any.whl
- Upload date:
- Size: 69.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e961c8eea46adfce9d821e8abd4401e62dd7d3c620c5377dac4edff46309074c
|
|
| MD5 |
9aaf2a9426b4f901b3d23747a0b88f8e
|
|
| BLAKE2b-256 |
0140d596c536c3895022d1c62e0585c8f94b8042837964eb8db7b2a02069a199
|
Provenance
The following attestation bundles were made for lasagnastack-1.0.17-py3-none-any.whl:
Publisher:
main-deploy.yaml on jyjulianwong/LasagnaStack
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
lasagnastack-1.0.17-py3-none-any.whl -
Subject digest:
e961c8eea46adfce9d821e8abd4401e62dd7d3c620c5377dac4edff46309074c - Sigstore transparency entry: 1615236312
- Sigstore integration time:
-
Permalink:
jyjulianwong/LasagnaStack@37ce0425e9c3a523401da93cdcaee0211d6d1013 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/jyjulianwong
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main-deploy.yaml@37ce0425e9c3a523401da93cdcaee0211d6d1013 -
Trigger Event:
push
-
Statement type: