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

推荐订阅源

The GitHub Blog
The GitHub Blog
I
InfoQ
U
Unit 42
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
月光博客
月光博客
D
Docker
Stack Overflow Blog
Stack Overflow Blog
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
博客园 - 聂微东
A
About on SuperTechFans
腾讯CDC
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
博客园 - 【当耐特】
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
M
MIT News - Artificial intelligence

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - sebastianwessel/skills: AI Skills
puristajs · 2026-05-29 · via Hacker News - Newest: "AI"

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.