This skill should be used for configuring devloop project settings via .devloop/local.md, git workflow preferences, commit settings, review options
Manages project-specific DevLoop settings for git workflows, commits, reviews, and GitHub integration via local configuration files.
npx claudepluginhub zate/cc-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Project-specific devloop settings via .devloop/local.md (NOT git-tracked).
YAML frontmatter followed by optional markdown notes:
---
git:
auto-branch: false # Create branch when plan starts
branch-pattern: "feat/{slug}" # {slug}, {date}, {user}
main-branch: main
pr-on-complete: ask # ask | always | never
commits:
style: conventional # conventional | simple
scope-from-plan: true
sign: false
review:
before-commit: ask # ask | always | never
use-plugin: null # null | code-review | pr-review-toolkit
github:
link-issues: false # Enable GH issue linking
auto-close: ask # ask | always | never
comment-on-complete: true
---
| Setting | Values | Default |
|---|---|---|
git.auto-branch | true/false | false |
git.branch-pattern | Pattern with {slug}, {date}, {user} | feat/{slug} |
git.pr-on-complete | ask/always/never | ask |
commits.style | conventional/simple | conventional |
commits.sign | true/false | false |
review.before-commit | ask/always/never | ask |
review.use-plugin | null/code-review/pr-review-toolkit | null |
github.link-issues | true/false | false |
github.auto-close | ask/always/never | ask |
github.comment-on-complete | true/false | true |
---
git:
auto-branch: true
---
---
git:
auto-branch: true
pr-on-complete: always
commits:
style: conventional
sign: true
review:
before-commit: always
use-plugin: pr-review-toolkit
---
---
git:
auto-branch: true
pr-on-complete: always
github:
link-issues: true
auto-close: always
comment-on-complete: true
---
---
plugins:
superpowers-suggestions: false # Disable seeAlso to superpowers skills
context_threshold: 70 # Exit ralph loop at this context % (default: 70)
---
.devloop/local.md directly; changes take effect on next command${CLAUDE_PLUGIN_ROOT}/scripts/parse-local-config.sh.gitignore to keep local-onlyActivates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.