Create complete runnable companion projects for articles - scaffolded projects, not snippets
Creates complete, runnable companion projects for articles with mandatory verification. Used when articles need executable code examples, configuration files, or templates that readers can clone and run immediately.
/plugin marketplace add mwguerra/claude-code-plugins/plugin install article-writer@mwguerra-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/readme-templates.mdCreate complete, executable companion projects that readers can clone and run immediately.
Companion projects must be COMPLETE and RUNNABLE, not snippets or partial code.
A Laravel companion project is a full Laravel installation. A Node companion project is a full Node project. A document companion project is a complete, usable document.
Every code companion project MUST be verified by actually running it before it is considered complete.
This is NOT optional. A companion project that hasn't been executed and tested is NOT complete.
┌─────────────────────────────────────────────────────────────────────────────┐
│ COMPANION PROJECT CREATION FLOW │
├─────────────────────────────────────────────────────────────────────────────┤
│ │
│ 1. SCAFFOLD Create base project (composer/npm/etc) │
│ ↓ │
│ 2. CUSTOMIZE Add article-specific code │
│ ↓ │
│ 3. VERIFY ⭐ ACTUALLY RUN THE CODE │
│ │ │
│ ├── Install dependencies → Must succeed │
│ ├── Run application → Must start without errors │
│ └── Run tests → All tests must pass │
│ │ │
│ ├── ✅ All pass → Companion project complete │
│ └── ❌ Any fail → Fix code, return to step 3 │
│ │
└─────────────────────────────────────────────────────────────────────────────┘
| Type | Install | Run | Test |
|---|---|---|---|
| Laravel | composer install | php artisan serve | php artisan test |
| Node.js | npm install | npm start or node src/index.js | npm test |
| Python | pip install -r requirements.txt | python src/main.py | pytest |
| React | npm install | npm start | npm test |
| Vue | npm install | npm run dev | npm test |
| Go | go mod download | go run . | go test ./... |
You must actually execute these commands and confirm they succeed:
# Example: Laravel verification
cd code
# 1. Install - MUST SUCCEED
composer install
# ✓ Check: No errors, vendor/ folder created
# 2. Setup - MUST SUCCEED
cp .env.example .env
php artisan key:generate
touch database/database.sqlite
php artisan migrate
# ✓ Check: No errors, database has tables
# 3. Run - MUST START
php artisan serve &
# ✓ Check: Server starts on localhost:8000
# ✓ Check: Can access in browser (if web app)
# Then stop the server
# 4. Test - ALL MUST PASS
php artisan test
# ✓ Check: "Tests: X passed" with 0 failures
If ANY step fails:
Before marking a companion project complete, confirm:
install_command executed successfully (no errors)run_command starts the application without errorstest_command executed successfullyDO NOT proceed to the next phase until all boxes are checked.
code)Complete application installations that can be:
Creation Process:
# 1. Create full Laravel project
cd content/articles/YYYY_MM_DD_slug/
composer create-project laravel/laravel code --prefer-dist
# 2. Configure for SQLite (no external DB)
cd code
cp .env.example .env
sed -i 's/DB_CONNECTION=mysql/DB_CONNECTION=sqlite/' .env
touch database/database.sqlite
php artisan key:generate
# 3. Install Pest
composer require pestphp/pest --dev --with-all-dependencies
php artisan pest:install
# 4. Add article-specific code
# - Models, Controllers, Routes, Views
# - Migrations, Seeders
# - Tests
# 5. VERIFY - Run migrations and tests
php artisan migrate
php artisan test
# ⚠️ DO NOT CONTINUE IF TESTS FAIL
Required Files (auto-generated by Laravel):
code/
├── app/
│ ├── Http/Controllers/
│ ├── Models/
│ └── Providers/
├── bootstrap/
├── config/
├── database/
│ ├── migrations/
│ ├── seeders/
│ └── database.sqlite
├── public/
├── resources/views/
├── routes/
│ ├── web.php
│ └── api.php
├── storage/
├── tests/
│ ├── Feature/
│ └── Unit/
├── .env
├── .env.example
├── artisan
├── composer.json
├── composer.lock
├── package.json
├── phpunit.xml
└── README.md # Custom: explains the companion project
Article-Specific Additions:
app/Models/app/Http/Controllers/routes/web.php or routes/api.phpresources/views/database/migrations/database/seeders/tests/Feature/README.md Template:
# Companion Project: [Article Topic]
Complete Laravel application demonstrating [concept].
## Requirements
- PHP 8.2+
- Composer
## Installation
\`\`\`bash
cd code
composer install
cp .env.example .env
php artisan key:generate
touch database/database.sqlite
php artisan migrate --seed
\`\`\`
## Run the Application
\`\`\`bash
php artisan serve
\`\`\`
Visit http://localhost:8000 to see the example.
## Run Tests
\`\`\`bash
php artisan test
\`\`\`
## What This Demonstrates
1. [Concept 1] - See `app/Models/Example.php`
2. [Concept 2] - See `app/Http/Controllers/ExampleController.php`
3. [Concept 3] - See `tests/Feature/ExampleTest.php`
## Key Files
| File | Description |
|------|-------------|
| `app/Models/Post.php` | Demonstrates [concept] |
| `routes/web.php` | Routes for [feature] |
| `tests/Feature/PostTest.php` | Tests for [feature] |
## Article Reference
This companion project accompanies: "[Article Title]"
Creation Process:
# 1. Create project
cd content/articles/YYYY_MM_DD_slug/
mkdir code && cd code
npm init -y
# 2. Install dependencies
npm install express
npm install --save-dev jest
# 3. Configure package.json
# Add scripts: "start", "test", "dev"
# 4. Add article-specific code
# 5. Run tests
npm test
Structure:
code/
├── src/
│ ├── index.js
│ ├── routes/
│ └── controllers/
├── tests/
│ └── example.test.js
├── package.json
├── package-lock.json
└── README.md
Creation Process:
# 1. Create project
cd content/articles/YYYY_MM_DD_slug/
mkdir code && cd code
python -m venv venv
# 2. Create requirements.txt
# 3. Add article-specific code
# 4. Add tests with pytest
Structure:
code/
├── src/
│ └── main.py
├── tests/
│ └── test_main.py
├── requirements.txt
├── setup.py
└── README.md
document)Complete, usable documents that readers can adapt.
Types:
Structure:
code/
├── templates/
│ ├── project-plan-template.md
│ └── sprint-planning-template.md
├── examples/
│ ├── project-plan-filled.md
│ └── sprint-planning-filled.md
└── README.md
Each template must be:
diagram)Complete Mermaid diagrams that render correctly.
Structure:
code/
├── diagrams/
│ ├── architecture.mermaid
│ ├── sequence.mermaid
│ └── flowchart.mermaid
├── rendered/ # Optional: PNG exports
│ └── architecture.png
└── README.md
Each diagram must:
config)Complete, working configuration files.
Structure:
code/
├── docker/
│ ├── Dockerfile
│ ├── nginx.conf
│ └── php.ini
├── docker-compose.yml
├── .env.example
└── README.md
Must be:
docker-compose up works)script)Complete, executable scripts.
Structure:
code/
├── scripts/
│ ├── deploy.sh
│ ├── backup.sh
│ └── setup.sh
├── lib/
│ └── helpers.sh
└── README.md
Must be:
chmod +x)#!/bin/bash)dataset)Complete datasets with schema.
Structure:
code/
├── data/
│ ├── sample-data.json
│ ├── sample-data.csv
│ └── seed.sql
├── schemas/
│ └── schema.json
└── README.md
template)Reusable file templates.
Structure:
code/
├── templates/
│ ├── component.tsx.template
│ ├── controller.php.template
│ └── model.php.template
├── generated/ # Example outputs
│ └── UserController.php
└── README.md
spreadsheet)Complete spreadsheets with formulas.
Structure:
code/
├── spreadsheets/
│ ├── budget-tracker.xlsx
│ └── project-timeline.xlsx
├── csv/
│ └── raw-data.csv
└── README.md
Based on article content:
| Article Topic | Companion Project Type | What to Create |
|---|---|---|
| Laravel feature | code | Full Laravel app |
| API design | code | Full API server |
| Architecture | diagram | Mermaid diagrams |
| Project management | document | Complete templates |
| DevOps | config | Docker setup |
| Automation | script | Executable scripts |
| Data analysis | dataset + code | Data + analysis code |
For code companion projects, ALWAYS start with proper project scaffolding:
# Laravel
composer create-project laravel/laravel code
# Node.js
mkdir code && cd code && npm init -y
# Python
mkdir code && cd code && python -m venv venv
# React
npx create-react-app code
# Vue
npm create vue@latest code
After base project exists:
Code Companion Projects Checklist:
composer install / npm install worksDocument Companion Projects Checklist:
Every companion project needs a README.md with:
## Setting Up the Project
Clone the example and install dependencies:
\`\`\`bash
cd code
composer install
cp .env.example .env
php artisan key:generate
\`\`\`
See the complete working companion project in the `code/` folder.
When showing code in the article, reference actual files:
Here's our Post model (`code/app/Models/Post.php`):
\`\`\`php
// From: code/app/Models/Post.php
<?php
namespace App\Models;
class Post extends Model
{
// ... actual code from example
}
\`\`\`
ALWAYS load settings.json before creating companion projects.
# View settings for your example type
bun run "${CLAUDE_PLUGIN_ROOT}"/scripts/show.ts settings code
Or read directly:
const settings = JSON.parse(fs.readFileSync('.article_writer/settings.json'));
const defaults = settings.companion_project_defaults.code;
// .article_writer/settings.json → companion_project_defaults.code
{
"technologies": ["Laravel 12", "Pest 4", "SQLite"],
"scaffold_command": "composer create-project laravel/laravel code --prefer-dist",
"post_scaffold": [
"cd code",
"composer require pestphp/pest pestphp/pest-plugin-laravel --dev --with-all-dependencies",
"php artisan pest:install",
"sed -i 's/DB_CONNECTION=.*/DB_CONNECTION=sqlite/' .env",
"touch database/database.sqlite"
],
"run_command": "php artisan serve",
"test_command": "php artisan test"
}
If the article task has a companion_project field, those values override settings:
settings.json defaults + article.companion_project = final config
────────────────────── ──────────────── ────────────
scaffold_command: X scaffold_command: Y Y (article wins)
technologies: [A, B] (not set) [A, B] (use default)
has_tests: true has_tests: false false (article wins)
# 1. Run scaffold_command
composer create-project laravel/laravel code --prefer-dist
# 2. Run each post_scaffold command
cd code
composer require pestphp/pest pestphp/pest-plugin-laravel --dev --with-all-dependencies
php artisan pest:install
# ... etc
# From settings.companion_project_defaults.code.test_command
php artisan test
Global defaults from settings.json:
{
"companion_project_defaults": {
"code": {
"technologies": ["Laravel 12", "Pest 4", "SQLite"],
"scaffold_command": "composer create-project laravel/laravel code",
"post_scaffold": [
"cd code",
"composer require pestphp/pest --dev",
"php artisan pest:install"
]
}
}
}
Article can override:
{
"companion_project": {
"type": "code",
"technologies": ["Laravel 11", "PHPUnit", "MySQL"],
"scaffold_command": "composer create-project laravel/laravel:^11.0 code"
}
}
code/
├── app/Models/Post.php # Just one file!
└── README.md
code/
├── app/ # Full Laravel structure
├── bootstrap/
├── config/
├── database/
├── public/
├── resources/
├── routes/
├── storage/
├── tests/
├── .env.example
├── artisan
├── composer.json
└── README.md
// Example that might not work
class PostController {
public function index() {
return Post::all(); // Is Post even defined?
}
}
// Tested with: php artisan test
class PostController extends Controller
{
public function index()
{
return Post::with('comments')->paginate(10);
}
}
// tests/Feature/PostTest.php exists and passes
After creating companion project, update article_tasks.json:
{
"companion_project": {
"type": "code",
"path": "code/",
"description": "Complete Laravel app with rate limiting",
"technologies": ["Laravel 12", "Pest 4", "SQLite"],
"has_tests": true,
"scaffold_command": "composer create-project laravel/laravel code",
"files": [
"app/Http/Controllers/ApiController.php",
"app/Http/Middleware/RateLimitMiddleware.php",
"routes/api.php",
"tests/Feature/RateLimitTest.php"
],
"run_instructions": "composer install && php artisan serve",
"test_command": "php artisan test",
"verified": true,
"verified_at": "2025-01-15T14:00:00Z"
}
}
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.