website-implementation-plan
Turn approved prd.md into a phased implementation plan with landing page first, asset collection vs creation, individual tasks. Writes tasks.md after user approval. Use when asked to plan website implementation, create an implementation plan, or break down a PRD into tasks. Don't use for building or coding — that's a separate phase.
What this skill does
# Website Implementation Plan Turns an approved improvement proposal (prd.md) into a phased implementation plan. Landing page first, then deeper pages. Asset collection vs. creation tracked. Writes `tasks.md` after approval. ## When to Use Trigger when the user asks to: - Plan the implementation of a website improvement proposal - Break down a PRD into phased tasks - Create an implementation plan for a site rebuild Do **not** use for building or coding — that is Phase 5 (website-builder). ## Workflow ``` 1. Read the approved prd.md 2. Identify phases: landing page first, then deeper content 3. For each task: define scope, outputs, acceptance criteria 4. Track assets: collect from original vs. create new 5. Assemble into tasks.md 6. Present for review 7. Incorporate edits (loop until approved) 8. Persist tasks.md ``` ## Output: tasks.md Structure ```markdown # Implementation Plan: <site name> **Source PRD:** prd.md **Date:** <date> --- ## Overview Brief summary of the implementation approach and phase ordering rationale. ## Phase 1: Landing Page The landing/home page is built first so it can be shown to potential users early. ### Task 1.1: Project Setup **Scope:** Initialize Vite + React + shadcn/ui + Tailwind CSS project. Configure build, routing, and deployment to GitHub Pages. **Outputs:** Working project scaffold with build pipeline. **Acceptance Criteria:** - `npm run dev` starts a local dev server - `npm run build` produces static assets in dist/ - GitHub Pages deployment configured **Assets Needed:** - [Collect] Logo, brand colors, brand name from original site - [Create] Project repository on GitHub ### Task 1.2: Landing Page Layout **Scope:** Build the hero section, nav, CTA, and footer based on the improvement proposal. Implement the improved layout, not a clone. **Outputs:** Landing page component with improved structure. **Acceptance Criteria:** - Hero section with clear headline, subtext, primary CTA above the fold - Responsive layout (mobile + desktop) - Navigation matches the improved structure **Assets Needed:** - [Collect] Hero imagery, copy text, brand colors - [Create] New CTA copy (if improvement proposes different messaging) --- ## Phase 2: Core Pages Deeper pages beyond the landing page. ### Task 2.1: <Page Name> **Scope:** ... **Outputs:** ... **Acceptance Criteria:** ... **Assets Needed:** - [Collect] ... - [Create] ... --- Repeat for each task across phases. ## Phase 3: Optimization and Polish Performance, SEO, and security improvements from the PRD. ### Task 3.1: Performance Optimization **Scope:** Image optimization, lazy loading, code splitting, font optimization. **Acceptance Criteria:** - LCP ≤ target (from prd.md metrics table) - CLS ≤ target - Page weight ≤ target ### Task 3.2: SEO Implementation **Scope:** Meta tags, structured data, heading structure, alt text, canonical URLs. **Acceptance Criteria:** - SEO score ≥ target - All pages have title, meta description, structured data ### Task 3.3: Security Hardening **Scope:** HTTPS enforcement, security headers, mixed content fixes. **Acceptance Criteria:** - All resources loaded over HTTPS - Key security headers present ## Asset Summary | Asset | Source | Action | |-------|--------|--------| | Logo | Original site | Collect | | Brand colors | Original site | Collect | | Hero image | Original site | Collect | | CTA copy | Improvement proposal | Create | | New icons | Generated | Create | ## Deployment 1. Push to GitHub repository 2. Configure GitHub Pages (settings → Pages → source: main /docs or /) 3. Verify deployment at `https://<user>.github.io/<repo>/` --- *This plan is derived from the approved improvement proposal. Actual task scope may need adjustment during implementation.* ``` ## Step 1: Read prd.md ``` Read file <path-to-prd.md> ``` If missing, ask for the path. The orchestrator should have produced this in Phase 3. ## Step 2: Define Phases Structure phases so something usable ships early: | Phase | Focus | Rationale | |-------|-------|-----------| | Phase 1 | Landing/home page | Usable immediately, can be shown to users | | Phase 2 | Core pages | About, features, contact, etc. | | Phase 3 | Optimization | Performance, SEO, security polish | | Phase 4 (optional) | Extra features | Nice-to-have improvements | Phase 1 **must** produce an independently usable landing page. ## Step 3: Define Tasks For each task: - **Scope**: Clear, bounded description of what to build - **Outputs**: Concrete deliverables - **Acceptance Criteria**: Measurable pass/fail conditions - **Assets Needed**: Distinguish `[Collect]` from `[Create]` Tasks should be small enough for a single implementation cycle. ## Step 4: Asset Tracking For every asset referenced in the plan: - Mark as **[Collect]** if it exists on the original site (logos, images, copy, colors) - Mark as **[Create]** if it needs to be newly produced (new icons, rewritten copy, generated images) ## Step 5: Write Draft tasks.md Assemble using the structure above. ## Step 6: Present for Review "Here is the implementation plan. Please: 1. **Approve** — save as tasks.md 2. **Edit** — specify changes 3. **Regenerate** — start over" ## Step 7: Incorporate Edits (loop) If edits requested: update, re-present, repeat until approved. Do **not** persist until explicit approval. ## Step 8: Persist tasks.md ```bash printf '%s\n' "$TASKS_CONTENT" > "$OUTPUT_PATH" ``` Default: `$PROJECT_DIR/tasks.md` or `~/workspace/clones/YYYY_MM_DD_slug/tasks.md`. If `$ARGUMENTS` includes `--output <path>`, use that. Confirm: ``` tasks.md saved to: <absolute-path> STATUS: approved ``` ## Return Contract When invoked by the `website-cloner` umbrella (Phase 4 gate), the orchestrator gates Phase 5 on this skill's outcome. The contract: | Outcome | Signal | |----------|---------------------------------------------------------------------| | approved | `tasks.md` exists at the resolved output path AND final line of stdout reads `STATUS: approved` | | pending | no `tasks.md` written; final line reads `STATUS: pending` (user still iterating) | | aborted | no `tasks.md` written; final line reads `STATUS: aborted` (user declined) | The orchestrator MUST NOT advance to Phase 5 unless the outcome is `approved`. A standalone invocation may ignore the status line, but the file-existence rule still holds: no approval, no `tasks.md`. ## Error Handling | Failure | Behavior | |---|---| | No prd.md provided | Ask for the PRD file path | | Invalid PRD format | Report error and ask for valid file | | User never approves | Keep looping; do not auto-save |
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".