identify-style-issues
$
npx mdskill add imbue-ai/mngr/identify-style-issuesAnalyze a codebase to pinpoint high-level structural and design deviations from a defined style guide.
- Detects architectural inconsistencies and structural deviations from established coding standards.
- Requires access to the target library's source code and the project's style guide documentation.
- Compares codebase structure against style rules, excluding linting fixes and known non-issues.
- Outputs a prioritized markdown file detailing necessary stylistic improvements for review.
SKILL.md
.github/skills/identify-style-issuesView on GitHub ↗
--- name: identify-style-issues argument-hint: [library_name] description: Identify divergences from the style guide in the $1 library --- Go gather all the context for the $1 library (per instructions in CLAUDE.md). Be sure to read non_issues.md as well. Once you've gathered that context, please do the below (and commit when you're finished). Your task is to identify any places where the $1 library diverges from the established style guide (style_guide.md). Focus on the higher-level aspects of the style guide, such as code structure, organization, and design patterns (worry less about anything that should be caught by an automated linter or a ratchet). In fact, for this reason it is important to go look at the existing ratchet tests--do NOT mention anything that is already covered by those tests. If there are inconsistencies within the style guide itself (or aspects that it leaves ambiguous), please note those as well. Do NOT report issues that are already covered by an existing FIXME Do NOT report issues that are highlighted as non-issues in non_issues.md After reviewing all the code in the library, think carefully about the most important stylistic inconsistencies and issues. Then put them, in order from most important to least important, into a markdown file in the library's "_tasks/style/" folder (make one if you have to) Name the file "<date>.md` (where you should get "date" by calling this precise command: "date +%Y-%m-%d-%T | tr : -") For the format of the file, use the following: ```markdown # Style issues in the $1 library (identified on <date>) ## 1. <Short description of style issue> Description: <detailed description of the style issue, including file names and line numbers where applicable> Recommendation: <your recommendation for how to fix the style issue> Decision: Accept ## 2. <Short description of style issue> Description: <detailed description of the style issue, including file names and line numbers where applicable> Recommendation: <your recommendation for how to fix the style issue> Decision: Accept ... ``` There's no need to commit when you're done (these files are gitignored). Just be sure to create the file in the right location with the right content.
More from imbue-ai/mngr
- asciinema-demosCreate 1-3 short asciinema demo recordings (5-20 seconds each) that demonstrate completed work. Use only when explicitly instructed to create demos.
- convert-github-issues-to-fixmesConvert triaged autoclaude GitHub issues into FIXMEs in the codebase. Use when you want to process issues that have been triaged by authorized users.
- create-fixmesCreate FIXME's in the codebase for each of the issues in the given input file.
- create-github-issues-from-fileConvert a file containing identified issues into GitHub issues. Use after running identify-* commands to create corresponding GitHub issues.
- create-task-from-jsonCreate a prompt from a short task description in a JSON file
- fix-somethingFix a random FIXME in the codebase (in the given scope, use "." for the whole codebase)
- identify-doc-code-disagreementsIdentify places in the $1 library where the docs and code disagree
- identify-inconsistenciesIdentify inconsistencies in the $1 library
- identify-outdated-docstringsIdentify outdated docstrings in the $1 library
- sync-tutorial-to-e2e-testsMatch tutorial script blocks to e2e pytest functions and add missing tests