AI 에이전트를 위한 스킬 관리자를 구축했습니다. 상담원이 직접 기술을 설치합니다.

hackernews | | 📦 오픈소스
#ai 에이전트 #anthropic #cli #도구 관리 #스킬 배포 #오픈소스
원문 출처: hackernews · Genesis Park에서 요약 및 분석

요약

리시드(reseed)는 프로젝트별로 AI 에이전트의 스킬을 효율적으로 관리하고 배포할 수 있도록 도와주는 오픈소스 CLI 도구입니다. 사용자는 중앙 라이브러리에 자체 스킬을 저장하거나 깃허브(GitHub)의 오픈소스 스킬을 내려받아 각 프로젝트에 필요한 항목만 선택적으로 설치할 수 있으며, 대화형 TUI나 명령어를 통해 동기화 및 관리가 가능합니다. 특히 이 도구 내에 에이전트용 스킬을 별도로 설치하면, AI 에이전트가 스스로 프로젝트에 맞는 스킬을 찾아 설치하고 관리하는 자동화 작업을 수행할 수 있습니다. Go 언어 1.24 이상 버전이 필요하며, MIT 라이선스를 따르는 macOS, 리눅스, 윈도우 환경에서 무료로 사용할 수 있습니다.

본문

A CLI tool for managing and distributing agent skills across projects reseed manages your agent skills across projects. Keep all your skills in one central library, pull in open source ones from GitHub, and install exactly what each project needs. Instead of global skills that bloat every project, skills live in each project. That way also every teammate has access to them. Your library can be a git repo to version and share your collection. 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. 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. This only needs to be done once. reseed init ~/skills Write your own skills (any folder with a SKILL.md file) or pull in open source ones from GitHub. Use --pack to group related skills together. reseed install anthropics/skills/skills --pack anthropic 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. Re-copy the latest versions of your library skills into a project: reseed sync All operations available in the TUI also work as standalone commands for scripting and automation: reseed add # add skills or packs to the project reseed remove # 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. This repo includes a skill that teaches LLMs how to use reseed. Install it and your agent can manage skills on your behalf, like finding and installing skills that fit your project: reseed install nattergabriel/reseed/skills Requires Go 1.24+ and golangci-lint. Run make setup to enable pre-commit hooks. MIT. Free to use, modify, and distribute.

Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.

공유

관련 저널 읽기

전체 보기 →