iskendernarynbaev-lab
- 2 skills
- 0 followers
- 1 day ago last updated
- ▌ Code Guard · iskendernarynbaev-lab bundlePost-write code safety check. Run AFTER writing or editing code files (.py, .js, .ts, etc.) and BEFORE telling the user the work is done or committing. Detects leaked secrets (API keys, passwords, tokens, .env hygiene), common bug patterns (bare except, mutable defaults, eval, SQL injection, XSS, empty catch, leftover debuggers), syntax errors, lint/type issues (ruff/mypy/eslint if installed), and lists tests impacted by the change via project-index. Do NOT use for non-code files or when no code was modified.
- ▌ Project Index · iskendernarynbaev-lab bundleToken-efficient codebase navigation via a persistent code index. Use at the START of any work session on a code project (repository, codebase, multi-file project) and for any structural question about code — "where is X defined", "who uses/imports Y", "what breaks if I change Z", "what is the structure of this project". Builds .claude/index/ once, updates incrementally, then answers structural questions with cheap queries instead of grep + reading whole files. Do NOT use for single-file scripts or non-code folders.