From srnnkls-tropos
Language-specific coding guidelines. Use when implementing code in Python or other supported languages.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin srnnkls-troposThis skill uses the workspace's default tool permissions.
Language-specific patterns, anti-patterns, and best practices for writing code.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Language-specific patterns, anti-patterns, and best practices for writing code.
IMPORTANT - Workflow Integration:
task-dispatch skill instead (it will invoke this skill per task with quality gates)When implementing from a spec:
Create a branch for the spec (if not already on one):
feat/<spec-name>feat/user-auth for ./specs/active/user-auth/Verify before starting:
Language-specific guidelines are in ~/.claude/skills/code-implement/resources/loqui/languages/{language}/.
Use Read tool (not Glob) to access resources - paths outside cwd require direct reads.
Each language directory follows this structure:
~/.claude/skills/code-implement/resources/loqui/languages/{language}/
├── README.md # Overview, core principles, anti-patterns checklist
├── quality.md # Naming, comments, documentation conventions
├── composition.md # Structuring behavior (classes/functions/modules)
├── modules.md # Package structure, organization, public APIs
├── errors.md # Error handling patterns and practices
└── ... # Additional language-specific resources as needed
Start with the language README for quick reference and core principles, then dive into specific topic files as needed.