← All creators

niels-emmer

User

MyACE makes your AI coding agent's rules, skills, and workflows portable.

45 indexed · 0 Featured · 1 stars · avg score 72
Prolific

Categories

Indexed Skills (45)

AI & Automation Listed

agent-design-principles

A checklist for designing agent personas, skills, and multi-agent pipelines that stay reliable as they grow — grounded in the 12-factor-agents principles.

1 Updated 4 days ago
niels-emmer
Code & Development Listed

data-classification-guide

Public / internal / sensitive data tiers and what's allowed to touch an AI prompt, a log line, or a committed file at each tier.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

secrets-scan-checklist

Common credential shapes to recognize in a diff (API keys, tokens, connection strings, private key blocks) and the escalation rule to follow when one is found.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

security-audit-checklist

A PASS/FAIL/N/A checklist covering injection, authorization, secrets handling, dependency risk, and input validation for reviewing a diff or codebase.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

threat-modeling-quickstart

A lightweight what-could-go-wrong / who-could-exploit-it / what's-the-blast-radius pass for any new network-facing interface, data store, or trust boundary.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

api-design-checklist

Naming, status-code, error-shape, and versioning conventions for keeping an API internally consistent as it grows.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

backend-test-patterns

Guidance for covering the failure and edge paths of a backend change — bad input, concurrent writes, partial failure — not just the happy path.

1 Updated 4 days ago
niels-emmer
API & Backend Listed

migration-safety

Checklist for shipping schema migrations that roll back cleanly and won't lock up a production table.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

documentation-standards

Structure, tone, and formatting conventions for writing technical docs that stay accurate and get actually read.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

agent-instruction-drift-check

Procedure for comparing an agent-facing instruction doc (AGENTS.md/CLAUDE.md-style) against the actual current code and configuration to find and flag mismatches.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

readme-structure

A solid default README shape (what it is, quickstart, key commands, where to find more) and guidance on when a project has outgrown a single README.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

accessibility-checklist

A concrete, checklist-driven pass for semantic HTML, ARIA, keyboard navigation, contrast, alt text, and focus management.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

visual-verification-workflow

The procedure for actually confirming a UI change in a real or preview browser — golden path, an edge case, console errors, and responsive/dark-mode checks — before calling it done.

1 Updated 4 days ago
niels-emmer
Data & Documents Listed

exception-documentation

The template for documenting a deliberate, approved deviation from an infrastructure invariant — rationale, compensating control, approver, and expiry — instead of a silent workaround.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

iac-security-checklist

A PASS/FAIL/N/A checklist covering network exposure, identity and secrets, state protection, and tagging — run before any infrastructure change is proposed for apply.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

resource-naming-and-tagging

A concrete, cloud-agnostic naming and tagging template for infrastructure resources — resource type, workload, environment, region, plus mandatory ownership and cost tags.

1 Updated 4 days ago
niels-emmer
Code & Development Listed

well-architected-pillar-review

A discipline for mapping any nontrivial infrastructure change to the standard architecture pillars — security, reliability, cost, operational excellence, performance — regardless of cloud provider.

1 Updated 4 days ago
niels-emmer
Code & Development Listed

architecture-review

When a design needs a second look before implementation starts, and what to actually evaluate when giving it one.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

code-standards

Naming, structure, and consistency conventions for keeping a codebase readable and predictable as it grows.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

memory-system

Maintain a tiered, file-based memory system so project context and decisions survive across sessions instead of being rediscovered or contradicted each time.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

plan-tracking

Keep a running, visible record of task/plan state across a multi-step session so nothing silently gets dropped or forgotten.

1 Updated 4 days ago
niels-emmer
Code & Development Listed

security-checklist

A structured PASS / FAIL / N/A checklist covering common risk categories for reviewing a diff before merge.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

test-patterns

What "well-tested" actually means — covering edge cases and failure modes deliberately, not just confirming the happy path runs once.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

git-workflow

Lightweight branch naming and pull-request-vs-direct-push guidance for fast solo/small-team iteration.

1 Updated 4 days ago
niels-emmer
Testing & QA Listed

android-testing

JUnit + Robolectric unit tests, Compose UI tests, screenshot tests, and Espresso for legacy views.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

jetpack-compose-conventions

State hoisting, remember/derivedStateOf patterns, modifier ordering, and preview annotations.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

play-store-readiness

App signing, keystore management, API level targeting, privacy policy, and review guideline checks.

1 Updated 4 days ago
niels-emmer
DevOps & Infrastructure Listed

cicd-pipeline-design

Stage isolation, caching, secret injection, artifact promotion, and rollback strategy for CI/CD pipelines.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

container-build

Multi-stage builds, distroless base images, layer caching, and vulnerability scanning for production containers.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

observability-stack

Structured logging, RED/USE metrics, distributed tracing, and alerting thresholds for production services.

1 Updated 4 days ago
niels-emmer
Web & Frontend Listed

component-conventions

Guidance on composing, naming, and sizing components, designing their props, and keeping their state as local as possible.

1 Updated 4 days ago
niels-emmer
Testing & QA Listed

end-to-end-testing

E2E test patterns — what to test, how to structure tests, environment management, avoiding flakiness.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

full-stack-error-handling

Error propagation patterns — backend error shape to API response to frontend fetch wrapper to UI state.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

app-store-readiness

Privacy manifest, code signing, capability declarations, screenshot automation, and review guideline checks.

1 Updated 4 days ago
niels-emmer
Testing & QA Listed

ios-testing

XCTest unit tests, XCUITest UI tests, snapshot testing, and performance baselines for iOS apps.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

swiftui-conventions

@State/@Binding/@ObservedObject usage, view composition, preview-driven development.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

build-tool-conventions

Maven/Gradle standard layout, dependency management, plugin versioning, and reproducible builds.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

layered-architecture

Controller → service → repository layering, DTO boundaries, @Transactional placement, and exception hierarchy.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

spring-test-pyramid

Unit, integration, slice, and E2E test patterns for Spring Boot applications.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

data-validation

Data quality checks to run before modeling — distribution summaries, leakage detection, class balance.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

experiment-tracking

How to properly set up experiment logging — what to log, how to name runs, how to compare and recover results.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

model-evaluation

Evaluation methodology — split strategy, metric selection, baseline comparison, failure mode analysis.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

reproducibility-standards

Seeding, dependency pinning, environment capture, and data versioning for fully reproducible ML workflows.

1 Updated 4 days ago
niels-emmer
Code & Development Listed

commit-format

A simple Conventional Commits style for clear, scannable commit history.

1 Updated 4 days ago
niels-emmer
AI & Automation Listed

governance

MyACE project-specific governance rules. Data classification, ADR process, documentation maintenance, dependency compliance, and audit trail. Load at session start for any work on this project.

1 Updated 4 days ago
niels-emmer

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