简体中文 | English
A curated collection of production-oriented Agent Skills for repeatable software engineering, product discovery, documentation, interface design, platform-specific development, and delivery workflows.
The repository is built around a simple idea: recurring agent work should be governed by explicit operating rules, progressive disclosure, and evidence-based completion instead of relying on a large prompt or improvised instructions every time.
Each skill is a self-contained workflow that teaches a compatible coding agent when to activate, what evidence to gather, how to make decisions, which failure modes to avoid, and how to verify the result.
The collection emphasizes:
- bounded scope and explicit assumptions
- project-native implementation instead of generic generated architecture
- human hand-maintainability across programming languages
- contract, lifecycle, protocol, and dependency verification
- complete user-facing states and rendered UI evidence
- documentation derived from source and runtime evidence
- safe platform-specific execution and delivery
- reusable evaluation cases for trigger routing and behavior quality
| Skill | Purpose |
|---|---|
build-user-facing-ui |
Build, redesign, review, and verify distinctive user-facing interfaces across web, mobile, desktop, games, kiosks, and specialized surfaces. |
english-spec-first |
Normalize rough, multilingual, or materially ambiguous requests into a concise English working specification before execution. |
freelance-order-triage |
Evaluate client work, hidden scope, quote posture, delivery risk, milestones, revisions, and acceptance criteria before implementation. |
git-checkpoint-push |
Create coherent Git checkpoints with targeted staging, Conventional Commit messages, remote safety checks, and explicit push results. |
high-constraint-coding |
Apply a minimal, evidence-led coding workflow that produces correct, project-native code humans can locate, trace, modify, and verify directly. |
no-code-comments |
Keep generated and modified code-like artifacts comment-free by default while preserving required directives and documentation contracts. |
powershell-safe-commands |
Prevent PowerShell interpolation, quoting, wrapper-layer, path, and nested command failures on Windows. |
vibecoding-domain-scout |
Research unfamiliar or regulated domains and convert findings into workflows, constraints, risks, MVP boundaries, and build-ready briefs. |
websearch-first |
Search authoritative current sources before answering or editing, reconcile external evidence with local facts, and cite the sources that materially affect the result. |
write-api-docs |
Create or review API contracts from routes, schemas, clients, tests, runtime evidence, OpenAPI, GraphQL, gRPC, webhooks, or messages without inventing unsupported behavior. |
xposed-module-dev |
Build, review, migrate, and debug Android Xposed or LSPosed modules across modern libxposed and legacy XposedBridge projects. |
Every skill follows the Agent Skills open standard and uses progressive disclosure:
- Frontmatter metadata decides when the skill should activate.
SKILL.mdprovides the core operating workflow.- Bundled resources are loaded or executed only when the task needs them.
A skill directory may contain:
skills/
<skill-name>/
SKILL.md
agents/
claude.yaml
openai.yaml
references/
scripts/
evals/
evals.json
trigger_eval.json
Only SKILL.md is required by the standard. This repository uses the optional directories for:
agents/: platform-facing names, descriptions, default prompts, and invocation policyreferences/: detailed guidance that should not occupy the base skill contextscripts/: deterministic validation or evidence-processing toolsevals/: positive and negative trigger cases plus realistic behavioral scenarios
The files in agents/ are repository extensions for specific agent platforms and are not part of the base Agent Skills standard.
Skills can operate independently or compose around one task. Typical flows include:
english-spec-first->vibecoding-domain-scout-> implementation skillfreelance-order-triage-> paid discovery or bounded delivery planwebsearch-first+ any task skill -> current external evidence reconciled with local factshigh-constraint-coding+no-code-comments-> controlled production code with a clean source stylebuild-user-facing-ui+high-constraint-coding-> complete UI behavior with disciplined implementationwrite-api-docs-> evidence-backed integration contract- completed work ->
git-checkpoint-push
The active task still determines scope. A companion skill should strengthen the workflow without expanding the requested deliverable.
Compatible agents discover project-level or user-level skills from these locations:
| Path | Scope |
|---|---|
.agents/skills/ |
Project-level, generic |
.cursor/skills/ |
Project-level, Cursor |
.claude/skills/ |
Project-level, Claude Code |
.codex/skills/ |
Project-level, Codex CLI |
~/.agents/skills/ |
User-level, generic |
~/.cursor/skills/ |
User-level, Cursor |
~/.claude/skills/ |
User-level, Claude Code |
~/.codex/skills/ |
User-level, Codex CLI |
Install one skill on Windows:
Copy-Item -Recurse .\skills\high-constraint-coding $env:USERPROFILE\.agents\skills\Install the complete collection:
Copy-Item -Recurse .\skills\* $env:USERPROFILE\.agents\skills\Use .cursor\skills, .claude\skills, or .codex\skills instead when a platform-specific location is preferred.
On macOS or Linux:
cp -r ./skills/high-constraint-coding ~/.agents/skills/
cp -r ./skills/* ~/.agents/skills/The target parent directory must already exist. Restart or reload the agent when its skill discovery implementation requires it.
Compatible agents can invoke skills automatically from their metadata. Skills may also be referenced explicitly when the agent supports named skill invocation.
Example requests:
Use high-constraint-coding to fix this regression with the smallest complete change.
Use build-user-facing-ui to redesign this workflow and verify every responsive state.
Use write-api-docs to reconcile the frontend client and backend routes into one API contract.
Read the target skill's description and workflow before assuming it applies. Negative trigger examples intentionally prevent specialized skills from taking over simple conceptual or unrelated tasks.
Complex skills include complementary evaluation surfaces:
trigger_eval.jsonchecks whether representative requests should or should not activate the skill.evals.jsonchecks expected workflow behavior on realistic tasks without prescribing one implementation.- Code-eval fixtures execute real repository changes against public tests, grader-only acceptance tests, dependency restrictions, and diff scope policies.
Some skills also include deterministic scripts. Examples include UI evidence validation, visual fingerprint comparison, and OpenAPI evidence validation.
high-constraint-coding includes three cross-platform code fixtures for runtime-version compatibility, persistence round trips, and transaction retry boundaries. Its runner copies only the public fixture into an isolated workspace, runs an optional agent command, injects grader tests after implementation, and treats test, protected-path, dependency, and scope violations as hard failures.
Run the deterministic checks:
python -m unittest skills/high-constraint-coding/scripts/test_run_code_eval.py -v
python skills/high-constraint-coding/scripts/self_check_code_evals.pyRun one candidate through the isolated evaluator:
python skills/high-constraint-coding/scripts/run_code_eval.py skills/high-constraint-coding/evals/fixtures/go-metadata-roundtrip/fixture.json --agent-command <executable> <arguments>The evaluator passes the task through the CODE_EVAL_PROMPT environment variable. An applicable failed gate blocks completion; an unverified required gate permits only Implemented but unverified.
When modifying a skill:
- keep
SKILL.mdconcise and move detailed material into direct references - update platform metadata when the skill's purpose or default behavior changes
- add trigger and behavioral evaluations for generalizable rules
- run relevant scripts and structural validation
- forward-test complex changes with fresh tasks that do not reveal the expected answer
- Prefer evidence over plausible API names or remembered behavior.
- Treat correctness, contracts, lifecycle closure, and human maintenance as stronger goals than brevity.
- Keep implementation and guidance native to the target repository and language.
- Add abstractions only when they isolate a real policy, side effect, dependency, ownership boundary, or change reason.
- Do not infer code authorship from style or optimize for detector evasion.
- Do not claim completion beyond the verification that was actually performed.
Copyright (c) 2026 Ninthless. All rights reserved.
This repository contains proprietary personal workflow materials. Viewing the repository does not grant permission to copy, modify, redistribute, publish, sublicense, host, republish, sell, or create derivative works from any part of it.
See LICENSE for the complete terms.