plugins marketplace
← All plugins

devbrother-skills

v0.4.0

DevBrother agent skills for clarifying requirements, generating AGENTS.md governance systems, verifying-then-applying PR review feedback, consulting a stronger advisor model at decision points, and designing polished self-contained HTML deliverables.

CodexClaude Code

by DevBrotherMIT88updated 7 hours ago

Source

git clone https://github.com/devbrother2024/skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

devbrother-skills/
├── .codex-plugin/plugin.json
└── .claude-plugin/plugin.json

Manifests2

.codex-plugin/plugin.json
{
  "name": "devbrother-skills",
  "version": "0.4.0",
  "description": "DevBrother agent skills for clarifying requirements, generating AGENTS.md governance systems, verifying-then-applying PR review feedback, consulting a stronger advisor model at decision points, and designing polished self-contained HTML deliverables.",
  "author": {
    "name": "DevBrother",
    "url": "https://github.com/devbrother2024"
  },
  "homepage": "https://github.com/devbrother2024/skills",
  "repository": "https://github.com/devbrother2024/skills",
  "license": "MIT",
  "keywords": [
    "codex",
    "skills",
    "agents-md",
    "agents",
    "governance",
    "requirements",
    "interview",
    "prompting",
    "agent-workflow",
    "code-review",
    "autofix",
    "pull-request",
    "review",
    "advisor",
    "second-opinion",
    "model-pairing",
    "consultation",
    "artifact-design",
    "html",
    "design",
    "ui",
    "typography"
  ],
  "skills": "./",
  "interface": {
    "displayName": "개발동생 Skills",
    "shortDescription": "Skills for clearer AI agent work, project rules, PR review handling, decision-point advisor consults, and HTML deliverable design.",
    "longDescription": "A small collection of DevBrother agent skills. deep-interview clarifies goals, scope, constraints, and done criteria before implementation. agents-md generates an AGENTS.md governance system and links CLAUDE.md for Claude Code compatibility. autofix fetches unresolved PR review threads from any reviewer (CodeRabbit, Codex cloud review, humans), verifies each comment against the actual code, and applies only validated fixes with approval or in --auto mode. advisor-strategy consults a user-specified stronger model as an advisor at decision points (before committing to an approach, before declaring done, and when stuck), returning advice only, with mandatory read-only verification of the brief. artifact-design guides deliberate palette, typography, and layout for polished, self-contained HTML deliverables while avoiding templated, AI-looking design.",
    "developerName": "DevBrother",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "websiteURL": "https://github.com/devbrother2024/skills",
    "defaultPrompt": [
      "Use deep-interview to clarify this rough idea.",
      "Verify and apply PR review comments with autofix.",
      "Design a polished landing page with artifact-design."
    ],
    "brandColor": "#F97316"
  }
}
.claude-plugin/plugin.json
{
  "name": "devbrother-skills",
  "skills": [
    "./deep-interview",
    "./agents-md",
    "./autofix",
    "./advisor-strategy",
    "./artifact-design"
  ],
  "description": "개발동생이 실전 워크플로에서 검증한 에이전트 스킬 모음",
  "version": "0.3.0",
  "author": {
    "name": "DevBrothers",
    "url": "https://github.com/devbrother2024"
  }
}