Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/book-sft-pipeline/README.md
1# Book SFT Pipeline23A standalone skill for training language models to write in any author's style. This is a **separate plugin** from the main Context Engineering collection.45## Installation67### Claude Code89```bash10# Add the marketplace first11/plugin marketplace add muratcankoylan/Agent-Skills-for-Context-Engineering1213# Install the book-sft-pipeline plugin14/plugin install book-sft-pipeline@context-engineering-marketplace15```1617### Cursor / Codex / IDE1819Copy `SKILL.md` to your `.rules` or project skills folder.2021### Manual2223Reference the `SKILL.md` file directly in your agent's context.2425## What's Included2627```28book-sft-pipeline/29├── README.md # This file30├── SKILL.md # Complete skill documentation (standalone)31├── examples/32│ └── gertrude-stein/ # Complete case study with real outputs33│ ├── README.md # Results and analysis34│ ├── sample_outputs.md # Raw model outputs35│ ├── training_config.json36│ ├── dataset_sample.jsonl37│ └── pangram/ # AI detector screenshots38├── scripts/39│ └── pipeline_example.py # Conceptual implementation40└── references/41├── segmentation-strategies.md42├── tinker-format.md43└── tinker.txt44```4546## Key Results4748Trained Qwen3-8B-Base on Gertrude Stein's "Three Lives" (1909):4950| Metric | Value |51|--------|-------|52| Training examples | 592 |53| Loss reduction | 97% |54| Pangram AI detector | 70% Human |55| Training time | 15 minutes |56| Total cost | $2 |5758## Related Context Engineering Skills5960This skill applies patterns from the [Agent Skills for Context Engineering](../../README.md) collection:6162| Skill | Application |63|-------|-------------|64| [project-development](../../skills/project-development/) | Staged pipeline architecture |65| [context-compression](../../skills/context-compression/) | Segmentation strategy |66| [multi-agent-patterns](../../skills/multi-agent-patterns/) | Orchestrator pattern |67| [evaluation](../../skills/evaluation/) | Modern scenario testing |68| [context-fundamentals](../../skills/context-fundamentals/) | Prompt diversity |6970## Resources7172- [Dataset on Hugging Face](https://huggingface.co/datasets/MuratcanKoylan/gertrude-stein-style-sft)73- [Research Paper](https://arxiv.org/pdf/2510.13939) (Chakrabarty et al. 2025)7475## License7677MIT7879