mirror of
https://github.com/LerianStudio/ring
synced 2026-04-21 13:37:27 +00:00
Skills are now the sole invocation mechanism — commands have been eliminated as an architectural layer. All 33 commands removed, 22 skills renamed to match the command names teams already knew, and 1 new skill (portfolio-review) created to replace the last orchestrator command. Renames: brainstorming→brainstorm, requesting-code-review→codereview, git-commit→commit, session-handoff→create-handoff, drawing-diagrams→diagram, executing-plans→execute-plan, exploring-codebase→explore-codebase, interviewing-user→interview-me, linting-codebase→lint, release-guide-info→release-guide, visual-explainer→visualize, using-git-worktrees→worktree, writing-plans→write-plan, dev-feedback-loop→dev-report, delivery-status-tracking→delivery-status, delivery-reporting→delivery-report, executive-reporting→executive-summary, dependency-mapping→dependency-analysis, documentation-review→review-docs, writing-functional-docs→write-guide, writing-api-docs→write-api Generated-by: Claude AI-Model: claude-opus-4-6
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
|
|
"assist": { "actions": { "source": { "organizeImports": "on" } } },
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"suspicious": {
|
|
"noExplicitAny": "warn"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "warn",
|
|
"useConst": "error"
|
|
},
|
|
"complexity": {
|
|
"noForEach": "off"
|
|
}
|
|
}
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2,
|
|
"lineWidth": 100
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/node_modules",
|
|
"!**/dist",
|
|
"!**/.references",
|
|
"!**/.opencode/state",
|
|
"!**/*.md",
|
|
"!**/*.json",
|
|
"!**/*.schema.json",
|
|
"!**/testdata"
|
|
]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["assets/skill/visualize/templates/**/*.html"],
|
|
"linter": {
|
|
"rules": {
|
|
"complexity": {
|
|
"noImportantStyles": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|