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

推荐订阅源

云风的 BLOG
云风的 BLOG
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 叶小钗
爱范儿
爱范儿
美团技术团队
H
Hackread – Cybersecurity News, Data Breaches, AI and More
有赞技术团队
有赞技术团队
博客园_首页
T
The Blog of Author Tim Ferriss
T
Tailwind CSS Blog
V
Visual Studio Blog
Jina AI
Jina AI
博客园 - Franky
量子位
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
M
MIT News - Artificial intelligence

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - sebastianwessel/skills: AI Skills
puristajs · 2026-05-29 · via Hacker News: 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.