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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog

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 GitHub - GenAI-Gurus/awesome-eu-ai-act: Curated tools, official sources, OSS, templates, and guides for EU AI Act compliance. 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
GitHub - nattergabriel/reseed: A CLI tool for managing an...
2026-04-11 · via Hacker News - Newest: "AI"

reseed

A CLI tool for managing and distributing agent skills across projects

Docs License CI


reseed manages your agent skills across projects. Keep all your skills in one central library, pull in open source ones from GitHub, and add exactly what each project needs. Instead of global skills that bloat every project, skills live in each project so every teammate has access to them.

If you find reseed useful, a ⭐ helps others discover it.

Install

macOS and Linux:

curl -fsSL https://raw.githubusercontent.com/nattergabriel/reseed/main/install.sh | sh

Windows: download the binary from the latest release and add it to your PATH.

Getting started

Your library is a directory where all your skills live. It can be any folder on your machine (and can itself be a git repo to version and share your collection). From there, you install skills into any project's .agents/skills/ directory.

Using Claude Code? Run reseed config dir .claude/skills once so skills install into .claude/skills/ instead.

1. Create your library

Point reseed at a folder to use as your library. This only needs to be done once.

reseed init ~/my-skills-library

2. Add skills to your library

Write your own skills (any folder with a SKILL.md file) or install open source ones straight from a GitHub URL. Use --pack to group related skills together.

reseed install pbakaus/impeccable/source/skills --pack impeccable

3. Browse and manage your library

Running reseed without any args opens an interactive TUI where you can browse your skills and packs, and add or remove them from the current project.

reseed library TUI

4. Keep things up to date

Re-copy skills from your library into the current project to pick up any changes:

reseed sync

Teach your agent to use reseed

This repo includes a skill that teaches your agent how to use reseed on your behalf. Copy it into your agent's global skills directory so it's available across all your projects:

curl -sL https://raw.githubusercontent.com/nattergabriel/reseed/main/skills/reseed/SKILL.md -o ~/.claude/skills/reseed/SKILL.md --create-dirs

CLI commands

All operations available in the TUI also work as standalone commands for scripting and automation:

reseed add <skills...>  # add skills or packs to the project
reseed remove <skills...>  # remove skills from the project
reseed list  # list library contents
reseed status  # show skills installed in the project

For the full walkthrough, see the quickstart guide. Browse the docs for details on every command.

Contributing

Requires Go 1.24+ and golangci-lint. Run make setup to enable pre-commit hooks. If you have ideas or suggestions, open an issue, happy to hear them.

License

MIT. Free to use, modify, and distribute.