TheophilusChinomona
- 38 skills
- 0 followers
- 11 hours ago last updated
- ▌ Browse · theophiluschinomona bundleInteractive browser QA using xd://browser or (optionally) the gstack browse binary for headed mode. Navigate pages, snapshot accessibility trees, interact via element refs, capture screenshots, verify page state, and hand off for CAPTCHA. Use when you need to test a page live, debug a UI bug, verify a deployment, or dogfood a user flow.
- ▌ Skillopt · theophiluschinomonaBenchmarks and optimizes idev skills using Microsoft SkillOpt. Use when asked to test a skill's quality, optimize a skill, benchmark skill performance, or run SkillOpt on a skill.
- ▌ Test Map · theophiluschinomonaDEPRECATED — Use build-check for test mapping and targeted test running. This skill is retained for backwards compatibility only; do not invoke directly.
- ▌ Idev Init · theophiluschinomonaScaffolds the per-project .claude/idev/ state directory (caches, journal, lessons, config templates) for the idev plugin. Use when starting idev in a new project, when the SessionStart hook reports the state directory is missing, or when the user runs /idev:idev-init or asks to 'set up idev'.
- ▌ File Index · theophiluschinomonaDEPRECATED — Use smart-context for feature-to-file lookups. This skill is retained for backwards compatibility only; do not invoke directly.
- ▌ Branch Sync · theophiluschinomona bundleSyncs the current feature branch with the team base branch (merge base into feature) before creating a PR, resolving merge conflicts safely with build/test verification. Use when preparing a branch for a PR, when asked to sync with or merge in the base/developer branch, when a PR shows conflicts, or before pushing a long-lived feature branch.
- ▌ Build Check · theophiluschinomonaAuto-detects the project's build system and runs compile/type-check after file changes, auto-fixing straightforward errors (max 3 attempts). Use after completing a multi-file feature or when asked to build or check compilation.
- ▌ Project Map · theophiluschinomona bundleGenerates and maintains a detailed project map (all FE/BE files with mappings) at .claude/idev/project-map/project.map.md via Python watcher scripts. Use when generating or refreshing the project map, configuring the map watcher, or when another skill needs the map as a data source.
- ▌ Self Review · theophiluschinomonaCode-quality checklist run on Claude's own output before reporting done: unused imports, missing error handling, naming consistency, security issues. Use after completing any code changes.
- ▌ Browser Test · theophiluschinomonaCode-as-action browser testing: verify UI changes and user flows by writing re-runnable Playwright scripts, capturing screenshots/console/network evidence, and producing test reports. Use when verifying a web feature in a real browser, reproducing a UI bug, smoke-testing a flow after changes, or asked to test the site / run browser tests.
- ▌ Commit Style · theophiluschinomonaTeam commit-message conventions. Use when writing a commit message, committing or amending changes, or when asked about the project's commit format. Reads the per-project style from .claude/idev/commit-style.md.
- ▌ DB Preflight · theophiluschinomonaScans DBScripts/ folder for unapplied database migrations and surfaces them before builds or at session start. Prevents 'Invalid object name' 500s caused by hand-applied DBScript migrations being missed. Use when starting a session, before building, or when a runtime DB error mentions a missing table/column.
- ▌ Eval Harness · theophiluschinomonaEvaluation framework for capability and regression evals with pass@k metrics. Use when asked to define evals, run evals, or check eval status.
- ▌ Import Graph · theophiluschinomonaDEPRECATED — Use LSP tools (lsp references, lsp definition) for dependency tracking. This skill is retained for backwards compatibility only; do not invoke directly.
- ▌ Task Journal · theophiluschinomonaPersistent task log across sessions: pending tasks, completed work, known issues, backlog. Use when starting a session, completing a task, hitting a blocker, or asked what is pending or in progress. Delegates session persistence to the remember plugin.
- ▌ Tdd Workflow · theophiluschinomonaTest-driven development workflow: write failing test, implement to pass, refactor. Use when starting a new feature or bugfix that needs tests first.
- ▌ Auto Learning · theophiluschinomona bundleInstinct-based learning system that observes sessions via hooks and evolves patterns into skills/commands/agents. Use when the user asks about learned instincts, wants to analyze session patterns, sets up auto-learning or observation hooks, or runs /idev:instinct-status, /idev:instinct-export, /idev:instinct-import, or /idev:evolve.
- ▌ Cache Refresh · theophiluschinomonaKeeps idev skill caches fresh after source files are created, deleted, or renamed. Use after structural file changes or when the user says refresh caches.
- ▌ Env Preflight · theophiluschinomonaSession environment sanity check — verifies cwd is the repo root, git auth is live, DB env vars are present, and reports active sandbox constraints. Use when starting a session, when credentials may have expired, or when the environment feels stale.
- ▌ Smart Context · theophiluschinomona bundleToken-optimized context loading: load the cached project index at session start, then Grep before Read, expanding only as needed. Use when starting a session, deciding what context to load, or generating/refreshing the project index. For feature-name → file-path lookups, the file-index skill answers directly from this index.
- ▌ Test Coverage · theophiluschinomonaMeasures and reports test coverage for the project. Use when asked about coverage, before PRs, or when coverage drops.
- ▌ Session Resume · theophiluschinomonaCross-session context persistence via .claude/idev/session-resume/last-session.json. Use when resuming work in a new session, or to save working context at task completion or when the user asks to save. Proactively prompts to save at natural stopping points.
- ▌ Lessons Learned · theophiluschinomonaPersistent memory of past mistakes, fixes, and gotchas with prevention steps. Use when starting a new feature (read prevention steps) or after fixing any bug or discovering non-obvious behavior (append a lesson). For general task tracking, use task-journal instead.
- ▌ Pre Ship Verify · theophiluschinomonaMigration-aware pre-ship gate — diffs the migration/schema state against code changes, runs build/type-check, and smoke-tests changed API routes against a live DB before allowing a PR. Use before opening a PR when DB-backed code changed.
- ▌ Skill Benchmark · theophiluschinomona bundleEvaluates and benchmarks Agent Skill quality via static analysis and evaluation methodology. Use when assessing or reviewing skill quality, benchmarking skills, measuring skill activation accuracy, optimizing skill descriptions, or running /idev:benchmark-skills.
- ▌ Backend Patterns · theophiluschinomonaScans the codebase to auto-detect backend code conventions (controllers, services, entities, DTOs, DI registration) and caches them. Use when creating or modifying backend code so new files follow existing patterns exactly.
- ▌ Coding Standards · theophiluschinomonaSecurity-focused code review standards. Use when reviewing code for security issues, or when writing code that handles user input, authentication, secrets, file uploads, or database queries.
- ▌ Function Extract · theophiluschinomonaReads only the needed function from a large file (300+ lines) instead of the entire file, using grep/index line numbers. Use when one function is needed from a big file.
- ▌ Context Switching · theophiluschinomonaSwitches between development modes (dev, review, research) by loading the appropriate context. Use when the user changes task type or asks to switch modes.
- ▌ Frontend Patterns · theophiluschinomonaScans the codebase to auto-detect frontend conventions (pages, containers, components, hooks, services) and caches them. Use when creating or modifying frontend code so new files follow existing patterns exactly.
- ▌ Strategic Compact · theophiluschinomona bundleSuggests manual /compact at logical task boundaries (after exploration, planning, milestones) instead of arbitrary auto-compaction. Use when the user wants automatic /compact reminders, asks about managing context size, or when deciding whether to suggest compaction at a phase boundary.
- ▌ Codebase Explainer · theophiluschinomona bundleTurn a codebase into an onboarding playlist — Claude-authored analysis docs plus NotebookLM explainer videos (one overview + one per subsystem). Use when asked to explain a codebase, onboard onto a repo, make explainer/walkthrough videos of the code, or 'help me understand how this whole thing works'.
- ▌ Auto Approve Policy · theophiluschinomonaCaution protocol for destructive operations. Use before deleting files, dropping database objects, removing exports/public APIs, or running irreversible commands.
- ▌ Continuous Learning · theophiluschinomona bundleAutomatically extracts reusable patterns from sessions and saves them as learned skills. Use when asked to learn from a session, extract patterns, or review what was learned.
- ▌ Architecture Scanner · theophiluschinomonaDEPRECATED — Use project-map, backend-patterns, and frontend-patterns instead. This skill is retained for backwards compatibility only; do not invoke directly.
- ▌ Feature Completeness · theophiluschinomonaTraces a feature end-to-end (UI, hook, service, API, controller, database) to verify every link is wired. Use after completing a multi-layer feature or when asked whether a feature is fully connected.
- ▌ Post Creation Verify · theophiluschinomonaDEPRECATED — Use build-check for post-creation verification and registration checks. This skill is retained for backwards compatibility only; do not invoke directly.
- ▌ API Contract Validation · theophiluschinomonaDiscovers and validates API endpoints between frontend and backend. Use after creating or modifying API endpoints, or when investigating FE-BE contract mismatches. Simplified to endpoint discovery; full contract comparison deferred to dedicated tools.