accessibility-wcag
Web accessibility patterns for WCAG 2.2 compliance including ARIA, keyboard navigation, screen readers, and testing
Claude-native deep research using DAG-based query planning, parallel subagent execution, and gap-driven iteration. No external API needed.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --skill deep-dive --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deep-diveContext preview
The summary Claude sees to decide when to auto-load this skill.
Claude-native deep research using DAG-based query planning, parallel subagent execution, and gap-driven iteration. No external API needed.
name: deep-dive description: Claude-native deep research using DAG-based query planning, parallel subagent execution, and gap-driven iteration. No external API needed. user-invocable: true argument: The research question or topic to investigate deeply
Autonomous deep research using the same DAG-based planning pattern as Google's Deep Research — but running entirely on Claude Code with no external dependencies.
1. **Plan** — decompose the question into a DAG of sub-questions with dependencies 2. **Fan out** — run independent sub-questions in parallel via Agent subagents 3. **Gap analysis** — each subagent returns findings + identified gaps 4. **Iterate** — gaps become new sub-questions, fed back into the DAG 5. **Synthesize** — once all nodes complete, produce a final report
Given the research question, generate a DAG of sub-questions. Each node has:
**Rules for decomposition:**
**Print the DAG** as a table so the first brain can see the plan, then immediately proceed to execution — do not wait for confirmation.
**Create a task for each DAG node** using TaskCreate (description: the sub-question, status: pending). Also create tasks for "Gap analysis" and "Synthesize report". Update each task to `in_progress` when its wave launches and `completed` when the subagent returns. This gives the first brain real-time visibility into progress.
| ID | Question | Depends on | |----|----------|------------| | q1 | ... | — | | q2 | ... | — | | q3 | ... | q1 | | q4 | ... | q1, q2 |
Process the DAG in topological order:
**Wave 1:** Mark all Wave 1 node tasks as `in_progress`. Launch all nodes with no dependencies as **parallel Agent subagents**. As each subagent returns, mark its task `completed`. Each subagent gets this prompt:
You are a focused researcher. Answer this ONE question using web search: Question: [the sub-question] Instructions: - Use WebSearch to find current, authoritative information - Use 1-3 searches maximum - Be specific and cite what you find Return your answer in this exact format: ## Findings [Your answer with specific facts, dates, numbers. Cite sources inline.] ## Gaps [List anything you couldn't fully answer, contradictions you found, or follow-up questions that would strengthen the answer. If none, say "None."] ## Sources [List each source as: Title — URL]
**Citation persistence:** After each wave completes, append all sources from that wave to a file at `/tmp/deep-dive-sources-[topic-slug].json` as an array of `{"node_id", "title", "url"}` objects. This survives context compaction — if subagent results get compressed out of context, the sources file remains the source of truth. Read this file during synthesis to build the final Sources section.
**Wave 2+:** Once Wave 1 completes, mark all Wave 2+ node tasks as `in_progress` and launch nodes whose dependencies are now satisfied. Mark each task `completed` as its subagent returns. Include the findings from dependency nodes in the subagent prompt:
You are a focused researcher. Answer this ONE question using web search: Question: [the sub-question] Context from prior research: [Paste findings from dependency nodes] [same instructions as above]
Continue until all nodes complete.
Mark the "Gap analysis" task as `in_progress`. After all nodes complete, review the collected gaps across all subagents:
Only do ONE gap iteration round. This is not an infinite loop.
Mark the "Gap analysis" task as `completed` when done (whether gaps were found or skipped).
Mark the "Synthesize report" task as `in_progress`. Combine all findings into a final report. Mark it `completed` when the report file is written. Structure:
## Deep Dive: [Topic] ### Executive Summary [3-5 sentences: the key takeaway] ### Findings #### [Theme/Section 1] [Synthesized findings from relevant nodes, not just copy-paste] #### [Theme/Section 2] [...] ### Open Questions [Anything that couldn't be resolved — be honest about what's still unclear] ### Sources [Deduplicated list of all sources from all subagents]
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Web accessibility patterns for WCAG 2.2 compliance including ARIA, keyboard navigation, screen readers, and testing
Route broad or ambiguous AgentKit SEO work to the right module while keeping context scoped. Use when a request spans multiple surfaces, asks for overall…
REST API design with resource naming, pagination, versioning, and OpenAPI spec generation
Authentication and authorization patterns including OAuth2, JWT, RBAC, session management, and PKCE flows
AWS cloud patterns for Lambda, ECS, S3, DynamoDB, and Infrastructure as Code with CDK/Terraform
CI/CD pipeline patterns for GitHub Actions, GitLab CI, testing strategies, and deployment automation