askill
local-config

local-configSafety 95Repository

This skill should be used for configuring devloop project settings via .devloop/local.md, git workflow preferences, commit settings, review options

6 stars
1.2k downloads
Updated 3/14/2026

Package Files

Loading files...
SKILL.md

Local Configuration

Project-specific devloop settings via .devloop/local.md (NOT git-tracked).

Format

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
---

Settings Reference

SettingValuesDefault
git.auto-branchtrue/falsefalse
git.branch-patternPattern with {slug}, {date}, {user}feat/{slug}
git.pr-on-completeask/always/neverask
commits.styleconventional/simpleconventional
commits.signtrue/falsefalse
review.before-commitask/always/neverask
review.use-pluginnull/code-review/pr-review-toolkitnull
github.link-issuestrue/falsefalse
github.auto-closeask/always/neverask
github.comment-on-completetrue/falsetrue
fresh_threshold5-5010
context_threshold50-9570

Example Configurations

Minimal (Git-aware)

---
git:
  auto-branch: true
---

Full CI/CD Workflow

---
git:
  auto-branch: true
  pr-on-complete: always
commits:
  style: conventional
  sign: true
review:
  before-commit: always
  use-plugin: pr-review-toolkit
---

Issue-Driven Development

---
git:
  auto-branch: true
  pr-on-complete: always
github:
  link-issues: true
  auto-close: always
  comment-on-complete: true
---

Context & Performance

---
fresh_threshold: 10            # Tasks before suggesting /devloop:fresh (default: 10)
context_threshold: 70          # Exit ralph loop at this context % (default: 70)
---
SettingValuesDefaultDescription
fresh_threshold5-5010Tasks completed before suggesting a fresh restart. Set higher (20-30) for 1M context models.
context_threshold50-9570Context usage % that triggers automatic ralph loop exit.

Plugin Integration

---
plugins:
  superpowers-suggestions: false  # Disable seeAlso to superpowers skills
---

Usage

  • Edit .devloop/local.md directly; changes take effect on next command
  • Parsed by ${CLAUDE_PLUGIN_ROOT}/scripts/parse-local-config.sh
  • Add to .gitignore to keep local-only

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 3/15/2026

Well-structured skill for configuring devloop project settings with comprehensive YAML examples, clear tables, and usage instructions. Includes when-to-use guidance and tags. Highly specific to the devloop tool but technically accurate. Depth > 4 suggests internal-only usage, reducing reusability.

95
90
55
85
85

Metadata

Licenseunknown
Version-
Updated3/14/2026
PublisherZate

Tags

ci-cdgithubgithub-actions