← All creators

andr-ca

Organization

Portable engineering policies for coding agents — git, testing, logging, and language conventions written once and referenced everywhere

35 indexed · 0 Featured · 1 stars · avg score 70
Prolific

Categories

Indexed Skills (35)

Code & Development Listed

accessibility

Use when building or reviewing web UIs for accessibility — WCAG 2.2 Level AA compliance, semantic HTML over ARIA, keyboard navigation, color contrast, screen reader patterns, and testing approach.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

agentic-loops

Use when building multi-turn agents, tool-calling systems, agent orchestration, or autonomous workflows — covers loops, tool calling, branching, reflection patterns.

1 Updated 2 days ago
andr-ca
API & Backend Listed

api-design

Use when designing, reviewing, or evolving a REST or GraphQL API — resource naming, HTTP status codes, versioning strategy, error response shapes, pagination, and authentication patterns.

1 Updated 2 days ago
andr-ca
Code & Development Listed

branching

Use when creating a branch, naming it, deciding whether to use a worktree, or handling secrets accidentally committed to history — branch naming convention, trunk protection, and secrets-removal procedure.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

clean-architecture

Use when business logic is entangled with frameworks or databases. Covers hexagonal architecture (ports and adapters), layer diagram, dependency direction rules, and violation symptoms.

1 Updated 2 days ago
andr-ca
Code & Development Listed

code-review-api

Use when reviewing REST or HTTP API endpoints, controllers, or route handlers. Covers HTTP status codes, idempotency, versioning, auth, pagination, error shapes, and rate limiting. Load instead of the general code-review skill for API-focused reviews.

1 Updated 2 days ago
andr-ca
Code & Development Listed

code-review-db

Use when reviewing code that touches the database or persistence layer. Covers index strategy, query count, N+1, transaction scope, migration safety, and connection pooling. Load instead of the general code-review skill for DB-focused reviews.

1 Updated 2 days ago
andr-ca
Code & Development Listed

code-review-ui

Use when reviewing frontend, UI, or component code. Covers accessibility (WCAG AA), state management, bundle size, keyboard navigation, hydration, and rendering performance. Load instead of the general code-review skill for UI-focused reviews.

1 Updated 2 days ago
andr-ca
Code & Development Listed

code-review

Use when reviewing a diff, pull request, or code change — systematic checklist for correctness, clarity, security, testability, and adherence to the project's conventions. Covers what to look for, how to give actionable feedback, and when to approve vs. request changes.

1 Updated 2 days ago
andr-ca
Code & Development Listed

committing

Use when creating a git commit — atomic commits, message format, what never to commit, and the agent workflow-completion requirement (run completion gate; stage or publish per publish authority).

1 Updated 2 days ago
andr-ca
API & Backend Listed

database-conventions

Use when designing a database schema, writing migrations, reviewing SQL queries, or choosing between relational and document models — covers naming, index strategy, migration safety, N+1 prevention, and transaction boundaries.

1 Updated 2 days ago
andr-ca
Code & Development Listed

dependency-audit

Use when adding dependencies, reviewing a project's dependency tree, or checking for known vulnerabilities and ownership risk — covers pip-audit, npm audit, govulncheck, lock file hygiene, update policy, and trust assessment.

1 Updated 2 days ago
andr-ca
Code & Development Listed

dependency-injection

Use when writing or reviewing code with object graphs, service dependencies, or testability concerns. Covers constructor injection, DI containers, lifetimes, and anti-patterns (service locator, ambient context, over-injection).

1 Updated 2 days ago
andr-ca
Web & Frontend Listed

design-patterns

Use when recognizing a recurring design problem. Covers GoF patterns: Factory, Builder, Strategy, Observer, Command, Template Method, Decorator, Repository, Facade — when to apply each and when not to.

1 Updated 2 days ago
andr-ca
DevOps & Infrastructure Listed

docker-conventions

Use when writing a Dockerfile, docker-compose file, or CI containerization config — multi-stage builds, layer caching, security (non-root user, minimal base images, no secrets in layers), and health checks.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

error-handling

Use when building error recovery, handling exceptions, designing error flows, or implementing logging for errors — covers retry, circuit-breaker, error wrapping, structured logging.

1 Updated 2 days ago
andr-ca
Data & Documents Listed

file-placement-policy

Use before creating any new file or directory in an established project — covers guarded root paths, docs/, src/, conf/, the allowed-additions escape hatch, and how to ask for permission. Load this skill at the start of every session in a project that has .agentharness-guarded-paths.json.

1 Updated 2 days ago
andr-ca
Code & Development Listed

github-issue-triage

Triage a GitHub issue by verifying all factual claims against running code, assessing roadmap fit, then posting a structured response comment with confirmed findings, stale corrections, a recommendation, and concrete test steps.

1 Updated 2 days ago
andr-ca
Code & Development Listed

go-conventions

Use when writing, reviewing, or refactoring Go code — naming conventions, receiver naming, error wrapping, interface design, goroutine safety, and common pitfalls (goroutine leaks, defer-in-loop, nil map writes).

1 Updated 2 days ago
andr-ca
AI & Automation Listed

harness-feedback

Triggers on harness friction events (hook failures, ambiguous guidance, violated mandates, mismatched reality) encountered during any session. Agent must: address the immediate problem, log it locally to docs/operational/harness-feedback.md, and file it upstream to andr-ca/agentharness. Default-on; skip upstream filing only if .agentharness-no-upstream-feedback exists at repo root.

1 Updated 2 days ago
andr-ca
Code & Development Listed

logging

Use when adding logging to an application, reviewing log output, choosing log levels, structuring logs for observability, or configuring logging backends — covers structured logging, YAML config patterns, what NOT to log, and local vs. production output.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

multi-agent-coordination

Use when two or more agent sessions may work on the same repository concurrently — covers the per-feature lock-file protocol, stale-lock detection, worktree isolation rules, and what to do when a feature is already locked.

1 Updated 2 days ago
andr-ca
Testing & QA Listed

mutation-testing

Use when writing tests for critical business logic, auditing test suite quality beyond line coverage, or interpreting surviving mutants — covers mutation operators, mutation score thresholds, and tooling (mutmut, Stryker, gremlins) for Python, TypeScript/JS, and Go.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

performance-profiling

Use when diagnosing slow code, high memory usage, or CPU spikes — language-agnostic profiling workflow: form a hypothesis, identify the hot path, benchmark before and after, and interpret profiler output. Includes Python (cProfile, py-spy), Go (pprof), and Node.js (--inspect, clinic.js) tooling.

1 Updated 2 days ago
andr-ca
Data & Documents Listed

planning-with-files

Use when starting a complex multi-step task, a research project, or any task requiring more than 5 tool calls — creates and maintains task_plan.md, findings.md, and progress.md to preserve state across context resets.

1 Updated 2 days ago
andr-ca
AI & Automation Listed

port-agent-config

Use when asked to port, migrate, or add equivalent agent instructions, skills, or custom sub-agents for a different coding tool than the one already configured — e.g. "add Cursor support from our CLAUDE.md", "we're switching from Cursor to Codex, port our rules", "make this work for Copilot too", "port our review subagent to Codex". Covers both agentharness-linked projects (use the real generators, don't hand-write) and plain projects with hand-authored config (port by hand, same principles).

1 Updated 2 days ago
andr-ca
AI & Automation Listed

project-bootstrap

Use on the first run in a project, or when asked to set the harness up, tailor it to this repository, or work out which conventions apply here — inventories what the project already does, interviews the owner about the decisions only they can make, and applies a confirmed plan without overwriting existing setup.

1 Updated 2 days ago
andr-ca
Code & Development Listed

python-conventions

Use when writing or reviewing Python code — naming conventions, type hints, common pitfalls (mutable defaults, bare except, is-vs-==), and testing structure.

1 Updated 2 days ago
andr-ca
Web & Frontend Listed

react-best-practices

Use when writing, reviewing, or optimizing React or Next.js code — component architecture, hooks rules, server vs. client components, data fetching patterns, bundle size, and accessibility in React.

1 Updated 2 days ago
andr-ca
Code & Development Listed

requirements-clarification

Use before implementing a significant feature or change when requirements are ambiguous, underspecified, or likely to have multiple reasonable interpretations, or when a requirement arrives pre-formed as an issue, audit finding, or review comment whose claim needs checking — covers verifying the premise before acting, structured discovery, one question at a time, edge-case probing, and writing a brief requirements summary before coding starts.

1 Updated 2 days ago
andr-ca
Code & Development Listed

security-review

Use when reviewing code for security vulnerabilities, performing a security audit, or checking for OWASP Top 10 issues — covers injection flaws, broken access control, cryptographic failures, secrets exposure, dependency vulnerabilities, and language-specific pitfalls for Python, TypeScript/JavaScript, and Go.

1 Updated 2 days ago
andr-ca
Code & Development Listed

solid-principles

Use when designing classes or APIs to evaluate SOLID compliance — SRP, OCP, LSP, ISP, DIP. Covers what each principle means, how to diagnose violations by symptom, and how to refactor.

1 Updated 2 days ago
andr-ca
Testing & QA Listed

testing

Use when writing tests, deciding on test coverage, choosing between unit/integration/E2E tests, applying TDD, or reviewing test quality — covers rigor tiers, the Red-Green-Refactor cycle, coverage requirements, and Playwright for UI testing.

1 Updated 2 days ago
andr-ca
Code & Development Listed

typescript-conventions

Use when writing, reviewing, or refactoring TypeScript or JavaScript code — naming conventions, type annotations, private fields, null vs. undefined, async/await pitfalls, and module structure.

1 Updated 2 days ago
andr-ca
Code & Development Listed

issue-analysis

Analyzes GitHub issues and produces a structured, explicitly-unverified YAML analysis, prefixed by a disclaimer banner. Used by the issue-analyzer agent when processing issues labeled needs-analysis. Covers problem statement, current behavior, desired outcomes, affected components, implementation options, risks, and confidence scoring.

1 Updated 2 days ago
andr-ca

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