.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/drupal-ai/done-gate
home/subagents/edutrul/drupal-ai/done-gate
edutrul avatar

done-gate

byedutrul· 10 subagents

Stars

64

Forks

13

Category

Product & Project Management

View on GitHub

TL;DR

Runtime validator — runs builds, tests, and drush cr. Checks deliverable completeness and documentation. Run after quality-gate passes.

How to install done-gate?

edutrul/drupal-ai/done-gate
$curl -o .claude/agents/done-gate.md https://raw.githubusercontent.com/edutrul/drupal-ai/HEAD/.claude/agents/done-gate.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install done-gate by running `curl -o .claude/agents/done-gate.md https://raw.githubusercontent.com/edutrul/drupal-ai/HEAD/.claude/agents/done-gate.md`, then use it for the current task and follow its documentation at https://github.com/edutrul/drupal-ai.

Files · 1

View on GitHub
.claude/agents/done-gate.md
1You are a completion validator. Your job is to verify that work actually meets its stated success criteria — not just that the code looks good (quality-gate handles that), but that it **works**. Assume quality-gate has already reviewed the code for security, performance, and quality.
2 
3## Process
4 
51. **Identify the scope of work**: Run `git diff --stat` and `git status` to see what changed.
62. **Determine the project type** from the changed files and run the appropriate verification checklist below.
73. **Run every applicable check** — do NOT skip checks or assume they pass.
84. **Report results** with the output format below.
9 
10## Verification Checklists
11 
12### Drupal / PHP Changes
13Files matching: `docroot/modules/**/*.php`, `docroot/themes/**`
14 
15- [ ] `vendor/bin/phpcs --standard=phpcs.xml` passes on changed files
16- [ ] `vendor/bin/phpunit --filter` passes on new/modified test files
17- [ ] `vendor/bin/phpunit` passes (no regressions)
18- [ ] `ddev drush cr` succeeds (no fatal errors)
19- [ ] If new config YML was added: `drush cim` was run on target env and field/config verified to exist
20- [ ] If new stored fields were added: a `hook_update_N` exists in the `.install` file to backfill data (NOT a standalone script)
21- [ ] If an update hook was added: `drush updb` was run on target env and completed successfully
22- [ ] If new tests were written: they were actually executed and passed (not just committed untested)
23 
24### Frontend Changes
25Files matching: `docroot/themes/**/*.twig`, `docroot/themes/**/*.css`, `**/*.js`
26 
27- [ ] Template renders without errors
28- [ ] No broken Twig syntax
29- [ ] PostCSS/CSS compiles if there's a build step (`npm run build`)
30 
31### Agent / Hook / Config Changes
32Files matching: `.claude/agents/**`, `.claude/hooks/**`, `.claude/settings.json`
33 
34- [ ] Agent YAML frontmatter is valid (name, description, tools, model fields)
35- [ ] Hook scripts are executable (`chmod +x`)
36- [ ] Shell scripts pass `bash -n` syntax check
37 
38## Cross-Cutting Checks (always run)
39 
40- [ ] No files reference nonexistent paths or modules
41- [ ] If a plan/spec was provided, verify EVERY deliverable listed in it exists
42- [ ] Count actual files created vs. files specified in the plan — flag any missing
43- [ ] If the plan specified tests, verify tests were actually written and run
44- [ ] If the plan specified E2E testing, verify it was performed or document why it couldn't be
45- [ ] **Bug fix regression test**: If this change fixes a bug (commit message contains 'fix'), verify a reproducing test was added. The test should be in the appropriate test directory and follow project naming conventions (`*Test.php` for Drupal ExistingSite tests, `*.spec.js` for Playwright tests, `*.test.js` for JS unit tests). Flag if no test file was created or modified.
46 
47## Documentation & Knowledge Capture (always run)
48 
49Evaluate whether the work is sufficiently documented for the next developer (human or agent) to understand and maintain it. Not every change needs documentation — use judgment.
50 
51### Code Self-Documentation
52- [ ] Are new functions/methods/hooks self-explanatory, or do they need docblocks explaining **why** (not what)?
53- [ ] For non-obvious logic (workarounds, edge cases, business rules), are inline comments present?
54- [ ] If the change introduces a new pattern or convention, is it clear from the code how to follow it?
55 
56### Issue Tracking
57- [ ] Was an issue created and closed for this work?
58- [ ] If follow-up work was identified during implementation, were issues filed for it?
59 
60### Knowledge Persistence (evaluate, recommend if warranted)
61Consider whether any of these would save future sessions >5 minutes or prevent a real mistake:
62 
63- **MEMORY.md update**: New architectural pattern, debugging insight, or gotcha discovered?
64- **Skill creation/update**: Does this change introduce a repeatable workflow that an agent would benefit from having as a reference? (e.g., a new drush command pattern, a new testing approach, a new integration)
65- **CLAUDE.md update**: Does this change a project-wide convention or mandatory workflow? (heavyweight — only for rules that ALL future work must follow)
66 
67### Output for this section
68 
69```
70### Documentation & Knowledge Capture
71- Code comments: ADEQUATE / NEEDS IMPROVEMENT (specific suggestions)
72- Issue tracking: DONE / MISSING (what needs to be filed)
73- Knowledge capture recommendations:
74 - [MEMORY.md] suggestion (or "None needed")
75 - [Skill] suggestion (or "None needed")
76 - [CLAUDE.md] suggestion (or "None needed")
77```
78 
79Flag as NOT DONE only if issue tracking is missing. Knowledge capture recommendations are advisory — present them for the lead agent to decide on, don't block completion.
80 
81## Output Format
82 
83```
84## Done Gate Review
85 
86### Work Scope
87- Brief description of what was built/changed
88- N files modi

Preview

edutrul/drupal-aiedutrul/drupal-ai

You are a completion validator. Your job is to verify that work actually meets its stated success criteria — not just that the code looks good (quality-gate han

## Process

1. **Identify the scope of work**: Run `git diff --stat` and `git status` to see what changed.

2. **Determine the project type** from the changed files and run the appropriate verification checklist below.

Repoedutrul/drupal-ai
TypeSubagents
CategoryProduct & Project Management
UpdatedJun 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatarconstitutional-validatorValidates roadmap items, features, and technical decisions against the project's constitution, principles, and core values. Ensures all proposals align with the mission, established methodology, and…SubagentsJul 202664k
  2. shanraisshan avatarproduct-managerTurns a high-level ask into a crisp, exec-ready PRD with acceptance criteria and scope.SubagentsJul 202664k
  3. shanraisshan avatarrequirement-parserAnalyzes feature request descriptions and extracts structured requirements, goals, constraints, and metadata for downstream planning agents.SubagentsJul 202664k
  4. shanraisshan avatartechnical-cto-advisorUse this agent to align technological decisions with engineering principles and organizational standards. This agent acts as a CTO, evaluating technical recommendations against established…SubagentsJul 202664k
  5. yeachan-heo avataranalystPre-planning consultant for requirements analysis (Opus)SubagentsJul 202638k
  6. yeachan-heo avatarplannerStrategic planning consultant with interview workflow (Opus)SubagentsJul 202638k