惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - sebastianwessel/skills: AI Skills
puristajs · 2026-05-29 · via Show HN

Reusable AI agent skills maintained in this repository. The work is shaped by Sebastian Wessel's article Spec-Driven Development, which explains this repository's spec-first approach for keeping autonomous AI agents aligned from business intent through implementation and review. Each skill lives in its own subdirectory under skills/ and follows Anthropic's Agent Skills best practices.

Contents

  • Skill Index
  • Spec-Driven Workflow
  • Spec-Driven Development
  • Installation
  • Repository Layout
  • Documentation Pattern
  • Adding a Skill
  • Maintainer Notes

Skill Index

Skill Description Human docs
agent-skill-architect Creates, reviews, repairs, and optimizes agent skills. Use when a skill needs authoring, trigger tuning, evals, checks, packaging readiness, or drift controls. docs
spec-architect Creates and updates canonical implementation specs. Use when specs need authoring, evolution, source-of-truth repair, contracts, UX, NFRs, release, or supply-chain definition before readiness review. docs
spec-driven-workflow Coordinates the spec-driven lifecycle. Use when choosing order across specs, plans, tickets, reviews, feedback routing, or pause/resume. docs
spec-implementation-planner Turns approved specs into waves, dependency indexes, AFK tickets, and status tracking. Use when specs need parallel-agent planning, ticket readiness, blockers/unblocks, or plan gap checks. docs
spec-implementation-review Reviews implementation waves against approved specs and tickets. Use when completed or partial work needs acceptance, merge, release, or handoff review with path tracing and persisted findings. docs
spec-readiness-review Reviews, repairs, and approves implementation spec readiness. Use when specs need semantic review, deterministic checks, readiness reports, approval gates, or gap repair before planning. docs
spec-ticket-implementation Implements exactly one approved spec plan ticket in fixed scope. Use when a ready ticket needs code changes with contract/codegen-first, test-first, verification, and no invention. docs

Spec-Driven Workflow

Use spec-driven-workflow when a task spans more than one lifecycle stage or when the next step is unclear.

  1. Specify with spec-architect until specs are approved.
  2. Plan with spec-implementation-planner until waves, tickets, dependencies, scopes, status, and test-first order are ready.
  3. Implement one ready ticket with spec-ticket-implementation.
  4. Review ticket sets or waves with spec-implementation-review.
  5. Route findings back to the owning skill and repeat until no blocking findings remain.

Spec-Driven Development

Read Spec-Driven Development for the rationale behind this repository. The article describes how clear specs, implementation plans, ticket execution, and review gates work together so AI agents can build production-ready systems without drifting from the intended business outcome.

Installation

Install this skill package with the open skills ecosystem CLI:

npx skills add sebastianwessel/skills

See Vercel's announcement of skills and skills.sh for the package ecosystem.

Repository Layout

skills/
└── <skill-name>/
    └── SKILL.md

Optional per-skill directories include references/, scripts/, assets/, and agents/.

Human-facing skill documentation lives outside the executable skill package:

docs/
└── skills/
    └── <skill-name>.md

Documentation Pattern

Each skill should have a concise human docs page with the same structure:

  1. What the skill is for.
  2. Installation.
  3. What it does.
  4. How it works.
  5. Workflow or modes.
  6. Included files.
  7. Validation and safety notes.

Adding a Skill

  1. Create skills/<skill-name>/SKILL.md.

  2. Use concise YAML frontmatter with name and description.

  3. Keep detailed reference material in files linked directly from SKILL.md.

  4. Add docs/skills/<skill-name>.md for human-facing documentation.

  5. Refresh this table of contents:

    python3 scripts/update-readme.py

Maintainer Notes

Repository instructions for agents are in AGENTS.md. Claude reads CLAUDE.md, which points back to the same shared guidance.