← All creators

Borda

User

A collection of personal AI coding assistant configurations, specialist agents, and automated workflows optimized for Python and ML open-source development.

35 indexed · 0 Featured · 19 stars · avg score 74
Prolific

Categories

Indexed Skills (35)

AI & Automation Listed

integration

Manage codemap integration — 'check' audits installation health (scan-query reachable, index fresh, injection present), 'init' onboards codemap by discovering skills/agents, recommending injection sites, and wiring them in.

19 Updated today
Borda
AI & Automation Listed

query-code

Query the codemap structural index — central, coupled, deps, rdeps, import path, symbol-level source extraction, and function-level call graph (fn-deps, fn-rdeps, fn-central, fn-blast). TRIGGER when: user asks about module relationships, dependency graph, callers/callees, or blast radius; phrases: "what depends on", "who calls", "imports of", "dependency graph", "blast radius of". SKIP: codemap index not built (skill self-checks and no-ops gracefully); simple grep would suffice; non-Python repo.

19 Updated today
Borda
AI & Automation Listed

scan-codebase

Scan the Python codebase and build a structural JSON index (import graph + blast-radius metrics).

19 Updated today
Borda
Code & Development Listed

debug

Investigation-first debugging — gather evidence, form confirmed root-cause hypothesis, hand off to fix mode with diagnosis file.

19 Updated today
Borda
AI & Automation Listed

feature

TDD-first feature development — crystallise API as a demo test, drive implementation to pass it, run quality stack and progressive review loop.

19 Updated today
Borda
AI & Automation Listed

fix

Reproduce-first bug resolution — capture bug in failing regression test, apply minimal fix, run quality stack and review loop.

19 Updated today
Borda
AI & Automation Listed

plan

Interactive wizard that scans the codebase, proposes a metric/guard/agent config, and writes a program.md run spec. Also runs cProfile on a file path to surface bottlenecks before prompting for optimization goal.

19 Updated today
Borda
Code & Development Listed

refactor

Test-first refactoring — audit coverage, add characterization tests, apply changes with safety net, run quality stack and review loop.

19 Updated today
Borda
AI & Automation Listed

brainstorm

Iterative brainstorming skill for turning fuzzy ideas into approved tree documents. Diverges into branches, deepens and prunes them over many rounds, saves a tree doc. Run breakdown on the tree to distill it into a spec via guided questions.

19 Updated today
Borda
Code & Development Listed

create

Interactive outline co-creation for developer advocacy content — collects format, audience profile, story arc (Problem→Journey→Insight→Action), and voice/tone; detects out-of-scope requests (FAQs, comparison tables); surfaces conflicts between user brief and audience needs. Writes approved outline to .plans/content/<slug>-outline.md for foundry:creator to execute. Use when starting a blog post, Marp slide deck, social thread, talk abstract, or lightning talk.

19 Updated today
Borda
AI & Automation Listed

distill

One-time snapshot extracting patterns from work history and accumulated lessons, distills into concrete improvements — new agent/skill suggestions, roster quality review, memory pruning, consolidating lessons into rules/agent updates, or performing bin/ extraction from /audit --efficiency candidates.

19 Updated today
Borda
AI & Automation Listed

session

Session parking lot — automatically parks diverging ideas and unanswered questions to project-scoped memory; /session resume shows pending items, /session archive closes them, /session summary gives a session digest TRIGGER when: user asks "what was I working on", "any pending items", "what's in the parking lot", "remind me where we left off", "what did we defer"; resume intent clear from context. SKIP: new topic or explicit new task; user providing new context rather than resuming; archive mode requires user-supplied text (user-initiated only).

19 Updated today
Borda
AI & Automation Listed

setup

Post-install setup for foundry plugin. Merges statusLine, permissions.allow, and enabledPlugins into ~/.claude/settings.json; symlinks rules, TEAM_PROTOCOL.md, and skills into ~/.claude/.

19 Updated today
Borda
Code & Development Listed

fortify

Systematic ablation study runner. After research:run finds improvements, fortify identifies component candidates from git diff + diary, creates isolated git worktrees per ablation (main repo never modified), runs metric+guard in each worktree, ranks component importance, and optionally generates reviewer Q&A calibrated to a target venue.

19 Updated today
Borda
AI & Automation Listed

judge

Research-supervisor review of program.md — validates experimental methodology (hypothesis clarity, measurement validity, control adequacy, scope, strategy fit), emits APPROVED / NEEDS-REVISION / BLOCKED verdict before expensive run loop.

19 Updated today
Borda
AI & Automation Listed

retro

Post-run retrospective: reads .experiments/ JSONL, computes Wilcoxon significance, detects dead iterations, flags suspicious jumps, generates next-hypothesis queue for --hypothesis flag.

19 Updated today
Borda
AI & Automation Listed

run

Sustained metric-improvement loop with atomic commits, auto-rollback, and experiment logging. Iterates with specialist agents, commits atomically, auto-rolls back on regression. Accepts a program.md file path. Supports --resume, --team, --colab, --codex, --researcher, --architect, --journal, --hypothesis.

19 Updated today
Borda
AI & Automation Listed

sweep

Non-interactive end-to-end pipeline — auto-configure program.md (accept defaults), run judge+refine loop (up to 3 iterations), then run the campaign. Single command from goal to result.

19 Updated today
Borda
AI & Automation Listed

topic

Research State of the Art (SOTA) literature for an Artificial Intelligence / Machine Learning (AI/ML) topic, method, or architecture. Finds relevant papers, builds a comparison table, recommends the best implementation strategy for the current codebase, and optionally produces a phased implementation plan mapped to the codebase. Owns broad SOTA search end-to-end via foundry:web-explorer; delegates codebase mapping to foundry:solution-architect.

19 Updated today
Borda
AI & Automation Listed

verify

Paper-vs-code consistency audit. After research:scientist implements a method from a paper, verify the implementation matches paper claims across five dimensions — formula matching [F], hyperparameter parity [H], eval protocol [E], notation consistency [N], and citation chain [C]. Reads paper (PDF path / arXiv URL / pasted text), maps claims to codebase, emits verification table with match status and severity.

19 Updated today
Borda
AI & Automation Listed

rename-refs

Atomic rename of Python symbols (functions, classes, methods) or modules using the structural index. Finds all static callers, import sites, __all__ re-exports, and Sphinx docstring cross-refs (:func:, :class:, :meth:, :mod:, :attr:). Optional: keep old name as deprecated alias via pydeprecate (--deprecate) or hard-delete when zero callers (--remove-if-no-callers). TRIGGER when: user asks to rename a Python function, class, method, or module; phrases: "rename X to Y", "rename function", "rename class", "rename module", "move module X to Y", "refactor symbol X into Y", "update all references to X". SKIP: non-Python project; codemap index not built (run /codemap:scan-codebase first); renaming a local variable (not a symbol definition or module path); user explicitly wants grep-only rename without index verification; user performing rename via IDE/LSP and only wants advisory coverage (use --dry-run).

19 Updated today
Borda
AI & Automation Listed

kaggle

Generate a Kaggle competition notebook as a Jupytext `# %%` Python script following jirka's established ML research style: PTL for DNN training, best-fit tool selection, EDA→Baseline→Train→Inference pipeline with per-stage lens cells. Writes output to .experiments/kaggle/<name>.py.

19 Updated today
Borda
AI & Automation Listed

init

Post-install setup for foundry plugin. Merges statusLine, permissions.allow, and enabledPlugins into ~/.claude/settings.json; symlinks rules, TEAM_PROTOCOL.md, and skills into ~/.claude/.

19 Updated today
Borda
Code & Development Listed

review

Tiered codex-native review loop. Use for local diff review with mechanical scope gates, explicit specialist fan-out, measurable quality gates, and a JSON artifact.

19 Updated today
Borda
AI & Automation Listed

audit

Minimal codex-native audit loop. Use to scan codex configuration/workflow drift and emit ranked gaps with measurable gates.

19 Updated today
Borda
AI & Automation Listed

calibrate

Codex-native calibration loop. Use to detect leaks or major gaps across mirrored skills and agents with fixed checks plus behavioral recall, precision, and confidence-accuracy scoring.

19 Updated today
Borda
AI & Automation Listed

resolve

Minimal codex-native resolve loop. Use to apply review findings, rerun checks, and publish unresolved gaps with measurable gates.

19 Updated today
Borda
AI & Automation Listed

develop

Minimal codex-native develop loop. Use for implementation tasks with linear plan-build-verify flow and measurable quality gates.

19 Updated today
Borda
AI & Automation Listed

investigate

Minimal codex-native investigation loop. Use for unknown failures and root-cause narrowing with measurable gates.

19 Updated today
Borda
AI & Automation Listed

manage

Minimal codex-native management loop. Use to create, update, or remove Codex agents/skills/config entries with guardrails.

19 Updated today
Borda
AI & Automation Listed

analyse

Minimal codex-native analysis loop. Use for issue/PR/problem analysis before implementation with measurable gates.

19 Updated today
Borda
AI & Automation Listed

release

Minimal codex-native release loop. Use for SemVer-aware release readiness with measurable gates and artifact output.

19 Updated today
Borda
AI & Automation Listed

optimize

Minimal codex-native optimization loop. Use for metric-driven improvements with guardrails and measurable gates.

19 Updated today
Borda
AI & Automation Listed

research

Minimal codex-native research loop. Use for docs/papers/state-of-the-art scan with source-backed recommendations.

19 Updated today
Borda
AI & Automation Listed

sync

Minimal codex-native sync loop. Use to keep project and home Codex configs aligned and report drift.

19 Updated today
Borda

Bio shown is the top-scored skill's repo description as a fallback — real GitHub bios land in a future update.