Skip to main content
Run any Skill in Manus
with one click
GitHub repository

dotfiles

dotfiles contains 34 collected skills from akoken, with repository-level occupation coverage and site-owned skill detail pages.

skills collected
34
Stars
3
updated
2026-07-12
Forks
0
Occupation coverage
9 occupation categories ยท 100% classified
repository explorer

Skills in this repository

data-efcore-patterns
software-developers

Apply Entity Framework Core patterns for tracking, migrations, retries, bulk operations, DbContext lifetime, query behavior, and database-backed tests. Use when implementing, reviewing, debugging, or optimizing EF Core data access and migration workflows.

2026-07-12
dotnet-project-structure
software-developers

Structure or modernize .NET solutions using .slnx, global.json, Directory.Build.props, Central Package Management, SourceLink, NuGet configuration, release metadata, and reproducible build conventions. Use for new solution setup, repository-wide build configuration, SDK pinning, or project-layout migrations.

2026-07-12
graphify
software-developers

Build or query a persistent knowledge graph for broad architecture, cross-file relationships, or mixed code-and-document corpora. Use when the user explicitly asks for Graphify or a knowledge graph, when graphify-out already exists and can answer an architecture question, or when persistent cross-session mapping materially helps. Do not trigger for routine code questions, focused audits, or small repository tasks.

2026-07-12
tailwind-design-system
web-developers

Build or standardize Tailwind CSS v4 design systems with CSS-first tokens, variants, reusable components, responsive layouts, forms, theming, and accessibility. Use when creating a component library, defining design tokens, migrating design-system primitives, or removing inconsistent utility patterns.

2026-07-12
teach
postsecondary-teachers-all-other

Teach the user a new skill or concept, within this workspace.

2026-07-12
testcontainers
software-quality-assurance-analysts-and-testers

Build .NET integration tests against disposable Docker dependencies with Testcontainers and xUnit. Use for databases, caches, brokers, migration tests, container lifecycle, isolation, wait strategies, CI execution, or replacing infrastructure mocks with real services.

2026-07-12
testing-playwright-blazor
software-quality-assurance-analysts-and-testers

Test Blazor Server or WebAssembly applications with Playwright, including navigation, authentication, stable selectors, forms, SignalR updates, error UI, screenshots, HTTPS, parallelism, and CI. Use when creating or repairing Blazor browser tests or end-to-end test infrastructure.

2026-07-12
threejs-animation
software-developers

Implement or debug Three.js animation using AnimationClip, AnimationMixer, AnimationAction, GLTF clips, skeletal animation, morph targets, blending, procedural motion, and update-loop performance. Use when objects, characters, cameras, bones, or morph targets must animate or blend correctly.

2026-07-12
writing-great-skills
computer-occupations-all-other

Reference for writing and editing skills well โ€” the vocabulary and principles that make a skill predictable.

2026-07-12
agent-guard
information-security-analysts

Use for stronger secret leak prevention with Agent Guard and gitleaks: scan staged changes, working trees, or paths; install repo-local pre-commit hooks; mask command output; check PII; or compare/upgrade from lightweight secret scanning before commits, PRs, pushes, or agent runs.

2026-07-06
ci-repair
software-developers

Use when the user asks to fix a failing GitHub Actions CI run, repair a PR branch, inspect failed CI logs, or rerun a focused failure-fix loop from CI evidence.

2026-07-06
code-review-expert
software-quality-assurance-analysts-and-testers

Expert code review of current git changes with a senior engineer lens. Detects SOLID violations, security risks, and proposes actionable improvements. Use when reviewing code changes or pull requests.

2026-07-06
csharp-api-design
software-developers

Design stable, compatible public APIs using extend-only design principles. Manage API compatibility, wire compatibility, and versioning for NuGet packages and distributed systems. Use when designing or reviewing public C# APIs, NuGet packages, or distributed system wire formats.

2026-07-06
csharp-coding-standards
software-developers

Write modern, high-performance C# code using records, pattern matching, value objects, async/await, Span and Memory types, and best-practice API design patterns. Emphasizes functional-style programming with C# 12+ features. Use when writing C# code to ensure modern best practices.

2026-07-06
csharp-concurrency-patterns
software-developers

Choosing the right concurrency abstraction in .NET - from async/await for I/O to Channels for producer/consumer to Akka.NET for stateful entity management. Avoid locks and manual synchronization unless absolutely necessary. Use when implementing concurrent or asynchronous operations in .NET.

2026-07-06
csharp-type-design-performance
software-developers

Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types. Use when designing or reviewing .NET types, classes, structs, and collections for performance.

2026-07-06
data-database-performance
software-developers

Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper. Use when optimizing database queries or data access patterns.

2026-07-06
dependency-resilience
software-developers

Use when designing, reviewing, or changing remote calls, queues, webhooks, caches, brokers, streams, retries, timeouts, idempotency, backpressure, health checks, circuit breakers, or overload behavior.

2026-07-06
diagnose
software-developers

Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce โ†’ minimise โ†’ hypothesise โ†’ instrument โ†’ fix โ†’ regression-test. Use when user says "diagnose this" / "debug this", reports a bug, says something is broken/throwing/failing, or describes a performance regression.

2026-07-06
dotnet-package-management
software-developers

Manage NuGet packages using Central Package Management (CPM) and dotnet CLI commands. Never edit XML directly - use dotnet add/remove/list commands. Use shared version variables for related packages. Use when adding, removing, or updating NuGet packages in .NET projects.

2026-07-06
dotnet-serialization
software-developers

Choose the right serialization format for .NET applications. Prefer schema-based formats (Protobuf, MessagePack) over reflection-based (Newtonsoft.Json). Use System.Text.Json with AOT source generators for JSON scenarios. Use when implementing serialization or choosing a wire format in .NET.

2026-07-06
dotnet-slopwatch
software-quality-assurance-analysts-and-testers

Use Slopwatch to detect LLM reward hacking in .NET code changes. Run after every code modification to catch disabled tests, suppressed warnings, empty catch blocks, and other shortcuts that mask real problems.

2026-07-06
env-lint
network-and-computer-systems-administrators

Use when checking .env, .env.local, .env.production, or other environment files against .env.example without printing environment variable values.

2026-07-06
flaky-detector
software-quality-assurance-analysts-and-testers

Use when diagnosing flaky tests, nondeterministic failures, intermittent CI failures, race-prone test suites, or when the user asks to run a test command repeatedly.

2026-07-06
frontend-design
web-and-digital-interface-designers

Use when the task asks for a visually strong landing page, website, app, prototype, demo, or game UI. This skill enforces restrained composition, image-led hierarchy, cohesive content structure, and tasteful motion while avoiding generic cards, weak branding, and UI clutter.

2026-07-06
microsoft-extensions-configuration
software-developers

Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management. Use when configuring strongly-typed settings or implementing configuration validation in .NET.

2026-07-06
microsoft-extensions-dependency-injection
software-developers

Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add* methods for clean Program.cs and reusable configuration in tests. Use when organizing dependency injection registrations in .NET applications.

2026-07-06
production-readiness
software-developers

Use for launch, migration, traffic shift, release readiness, go/no-go, production impact, customer-impacting changes, recovery, rollback, observability, SLO, ownership, or operational readiness reviews.

2026-07-06
release-reproducibility
software-developers

Use when cutting releases, tags, version bumps, build artifacts, packages, deployment artifacts, release candidates, artifact promotion, rollback targets, flaky builds, cache trust, or build reproducibility.

2026-07-06
secret-guard
information-security-analysts

Use before commits, PRs, pushes, or when checking staged diffs/files for leaked API keys, tokens, private keys, JWTs, credentials, or high-entropy secrets with redacted output.

2026-07-06
structured-handoff
computer-occupations-all-other

Use when delegating to subagents, receiving subagent results, coordinating multi-agent work, or asking for worker output that must be auditable, resumable, or easy to validate.

2026-07-06
test-gap
software-quality-assurance-analysts-and-testers

Use after tests with coverage, during PR review, or when comparing changed git diff lines against coverage.xml, lcov.info, or coverage.json to find untested changed lines.

2026-07-06
testing-crap-analysis
software-quality-assurance-analysts-and-testers

Analyze code coverage and CRAP (Change Risk Anti-Patterns) scores to identify high-risk code. Use OpenCover format with ReportGenerator for Risk Hotspots showing cyclomatic complexity and untested code paths. Use when analyzing code complexity and test coverage.

2026-07-06
write-a-prd
project-management-specialists

Create a PRD through user interview, codebase exploration, module design, success criteria, risk analysis, and testing strategy. Use when user wants to write a PRD, create a product requirements document, or plan a new feature.

2026-07-06