ed3dai

ed3dai

@ed3dai Organization

GitHub
37 Skills
8214 Total Stars
February 2026 Joined

Public Skills

starting-a-design-plan

by ed3dai

Use when beginning any design process - orchestrates gathering context, clarifying requirements, brainstorming solutions, and documenting validated designs to create implementation-ready design documents

Code Gen 222 3mo ago

maintaining-a-marketplace

by ed3dai

Use when creating, releasing, or maintaining a Claude Code Plugin Marketplace - covers marketplace.json schema, version management, release checklists, changelog conventions, and validation to prevent sync drift between plugin.json and marketplace.json

Processing 222 3mo ago

doing-a-simple-two-stage-fanout

by ed3dai

Use when analyzing a large corpus of text, code, or data that exceeds a single agent's effective context - orchestrates parallel Worker subagents, Critic review subagents, and a final Summarizer subagent with task tracking and failure recovery

Automation 222 3mo ago

testing-skills-with-subagents

by ed3dai

Use when creating or editing skills, before deployment, to verify they work under pressure and resist rationalization - applies RED-GREEN-REFACTOR cycle to process documentation by running baseline without skill, writing to address failures, iterating to close loopholes

Agents 222 3mo ago

using-plan-and-execute

by ed3dai

Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Read tool before announcing usage, following brainstorming before coding, and creating task todos for checklists

Automation 222 3mo ago

executing-an-implementation-plan

by ed3dai

Use when executing implementation plans with independent tasks in the current session - dispatches fresh subagent for each task, reviews once per phase, loads phases just-in-time to minimize context usage

Automation 222 3mo ago

starting-an-implementation-plan

by ed3dai

Use when beginning implementation from a design plan - orchestrates branch creation, detailed planning, and hands off to execution with all necessary context

Automation 222 3mo ago

writing-design-plans

by ed3dai

Use after brainstorming completes - writes validated designs to docs/design-plans/ with structured format and discrete implementation phases required for creating detailed implementation plans

Auth 222 3mo ago

writing-implementation-plans

by ed3dai

Use when design is complete and you need detailed implementation tasks for engineers with zero codebase context - creates comprehensive implementation plans with exact file paths, complete code examples, and verification steps assuming engineer has minimal domain knowledge

Automation 222 3mo ago

using-generic-agents

by ed3dai

Use to decide what kind of generic agent you should use

Agents 222 4mo ago

creating-a-plugin

by ed3dai

Use when creating a new Claude Code plugin or setting up plugin structure - provides complete file organization, manifest format, and component definitions for commands, agents, skills, hooks, and MCP servers

CLI Tools 222 4mo ago

creating-an-agent

by ed3dai

Use when creating specialized subagents for Claude Code plugins or the Task tool - covers description writing for auto-delegation, tool selection, prompt structure, and testing agents

Agents 222 4mo ago

maintaining-project-context

by ed3dai

Use when completing development phases or branches to identify and update CLAUDE.md or AGENTS.md files that may have become stale - analyzes what changed, determines affected contracts and documentation, and coordinates updates

Code Gen 222 4mo ago

writing-claude-directives

by ed3dai

Use when writing instructions that guide Claude behavior - skills, CLAUDE.md files, agent prompts, system prompts. Covers token efficiency, compliance techniques, and discovery optimization.

Processing 222 4mo ago

writing-claude-md-files

by ed3dai

Use when creating or updating CLAUDE.md files for projects or subdirectories - covers top-level vs domain-level organization, capturing architectural intent and contracts, and mandatory freshness dates

Auth 222 4mo ago

writing-skills

by ed3dai

Use when creating new skills, editing existing skills, or verifying skills work before deployment - applies TDD to process documentation by testing with subagents before writing, iterating until bulletproof against rationalization

Code Gen 222 4mo ago

coding-effectively

by ed3dai

ALWAYS use this skill when writing or refactoring code. Includes context-dependent sub-skills to empower different coding styles across languages and runtimes.

Debugging 222 4mo ago

defense-in-depth

by ed3dai

Use when invalid data causes failures deep in execution - validates at every layer data passes through to make bugs structurally impossible rather than temporarily fixed

Processing 222 4mo ago

howto-code-in-typescript

by ed3dai

Use when writing TypeScript code, reviewing TS implementations, or making decisions about type declarations, function styles, or naming conventions - comprehensive house style covering type vs interface rules, function declarations, FCIS integration, immutability patterns, and type safety enforcement

Processing 222 4mo ago

writing-for-a-technical-audience

by ed3dai

Use when writing documentation, guides, API references, or technical content for developers - enforces clarity, conciseness, and authenticity while avoiding AI writing patterns that signal inauthenticity

API Dev 222 4mo ago

howto-develop-with-postgres

by ed3dai

Use when writing database access code, creating schemas, or managing transactions with PostgreSQL - enforces transaction safety with TX_ naming, read-write separation, type safety for UUIDs/JSONB, and snake_case conventions to prevent data corruption and type errors

Processing 222 4mo ago

functional-core-imperative-shell

by ed3dai

Use when writing or refactoring code, before creating files - enforces separation of pure business logic (Functional Core) from side effects (Imperative Shell) using FCIS pattern with mandatory file classification

CLI Tools 222 4mo ago

writing-good-tests

by ed3dai

Use when writing or reviewing tests - covers test philosophy, condition-based waiting, mocking strategy, and test isolation

Code Gen 222 4mo ago

programming-in-react

by ed3dai

Use when writing or modifying React components, planning React features, or working with .jsx/.tsx files - provides modern React patterns with TypeScript, hooks usage, component composition, and common pitfalls to avoid

Code Gen 222 4mo ago

asking-clarifying-questions

by ed3dai

Use after initial design context is gathered, before brainstorming - resolves contradictions in requirements, disambiguates terminology, clarifies scope boundaries, and verifies assumptions to prevent building the wrong solution

API Dev 222 4mo ago

brainstorming

by ed3dai

Use when creating or developing anything, before writing code or implementation plans - refines rough ideas into fully-formed designs through structured Socratic questioning, alternative exploration, and incremental validation

Academic 222 4mo ago

property-based-testing

by ed3dai

Use when writing tests for serialization, validation, normalization, or pure functions - provides property catalog, pattern detection, and library reference for property-based testing

Code Review 222 4mo ago

finishing-a-development-branch

by ed3dai

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

Code Review 222 4mo ago

using-git-worktrees

by ed3dai

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

File Ops 222 4mo ago

requesting-code-review

by ed3dai

Use when completing tasks, implementing major features, or before merging to verify work meets requirements - dispatches code-reviewer subagent, handles retries and timeouts, manages review-fix loop until zero issues

Automation 222 4mo ago

systematic-debugging

by ed3dai

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes - four-phase framework (root cause investigation, pattern analysis, hypothesis testing, implementation) that ensures understanding before attempting solutions

Code Gen 222 4mo ago

verification-before-completion

by ed3dai

Use when about to claim work is complete, fixed, or passing, before committing or creating PRs - requires running verification commands and confirming output before making any success claims; evidence before assertions always

Agents 222 4mo ago

test-driven-development

by ed3dai

Use when implementing any feature or bugfix, before writing implementation code - write the test first, watch it fail, write minimal code to pass; ensures tests actually verify behavior by requiring failure first

Debugging 222 4mo ago

playwright-debugging

by ed3dai

Use when Playwright scripts fail, tests are flaky, selectors stop working, or timeouts occur - provides systematic debugging approach for browser automation issues

Debugging 222 4mo ago

researching-on-the-internet

by ed3dai

Use when planning features and need current API docs, library patterns, or external knowledge; when testing hypotheses about technology choices or claims; when verifying assumptions before design decisions - gathers well-sourced, current information from the internet to inform technical decisions

Embeddings 222 4mo ago

playwright-patterns

by ed3dai

Use when writing Playwright automation code, building web scrapers, or creating E2E tests - provides best practices for selector strategies, waiting patterns, and robust automation that minimizes flakiness

Processing 222 4mo ago

investigating-a-codebase

by ed3dai

Use when planning or designing features and need to understand current codebase state, find existing patterns, or verify assumptions about what exists; when design makes assumptions about file locations, structure, or existing code that need verification - prevents hallucination by grounding plans in reality

Auth 222 4mo ago