MCP HubMCP Hub
스킬 목록으로 돌아가기

install-almanac-content

pjt222
업데이트됨 2 days ago
5 조회
17
2
17
GitHub에서 보기
메타ai

정보

이 CLI 도구는 agent-almanac 저장소에서 미리 빌드된 스킬, 에이전트, 팀을 지원하는 에이전트 프레임워크에 설치합니다. 사용 중인 프레임워크를 자동으로 감지하고 종속성을 해결하며, 매니페스트 파일을 사용하여 설치를 동기화할 수 있습니다. 새 프로젝트에서 에이전트 기능을 빠르게 시작하거나 여러 프레임워크에서 일관된 설정을 유지하는 데 사용하세요.

빠른 설치

Claude Code

추천
기본
npx skills add pjt222/agent-almanac -a claude-code
플러그인 명령대체
/plugin add https://github.com/pjt222/agent-almanac
Git 클론대체
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/install-almanac-content

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

Install Almanac Content

Use agent-almanac CLI to install skills, agents, teams into any supported agentic framework.

When Use

  • Setting up new project, need to install agentic skills, agents, teams
  • Installing all skills from specific domain (r-packages, devops)
  • Targeting multiple frameworks simultaneously (Claude Code, Cursor, Copilot)
  • Creating or syncing declarative agent-almanac.yml manifest for reproducible setups
  • Auditing installed content for broken symlinks or stale references

Inputs

  • Required: Content to install -- one or more skill, agent, team IDs (create-skill, r-developer, r-package-review)
  • Optional: --domain <domain> -- install all skills from domain instead of naming individual IDs
  • Optional: --framework <id> -- target specific framework (default: auto-detect all)
  • Optional: --with-deps -- also install agent skills + team agents+skills
  • Optional: --dry-run -- preview changes without writing to disk
  • Optional: --global -- install to global scope instead of project scope
  • Optional: --force -- overwrite existing content
  • Optional: --source <path> -- explicit path to agent-almanac root (default: auto-detect)

Steps

Step 1: Detect Frameworks

Run framework detection to see which agentic tools present in current project:

agent-almanac detect

Scans working directory for configuration files + directories (.claude/, .cursor/, .github/copilot-instructions/, .agents/) + reports which frameworks active.

Got: Output lists one or more detected frameworks with adapter status. No frameworks detected? Universal adapter (.agents/skills/) used as fallback.

If fail: CLI not found? Ensure installed + on PATH. Detection returns nothing but you know framework is present? Use --framework <id> to specify explicit. Run agent-almanac list --domains to verify CLI can reach registries.

Step 2: Search for Content

Find skills, agents, teams by keyword:

agent-almanac search <keyword>

Browse by category:

agent-almanac list --domains          # List all domains with skill counts
agent-almanac list -d r-packages      # List skills in a specific domain
agent-almanac list --agents           # List all agents
agent-almanac list --teams            # List all teams

Got: Search results or filtered lists display matching content with IDs + descriptions.

If fail: No results appear? Try broader keywords. Verify almanac root reachable: agent-almanac list should show full skill count. Can't find root? Pass --source /path/to/agent-almanac.

Step 3: Install Content

Install one or more items by name:

# Install specific skills
agent-almanac install create-skill write-testthat-tests

# Install all skills from a domain
agent-almanac install --domain devops

# Install an agent with its skills
agent-almanac install --agent r-developer --with-deps

# Install a team with its agents and their skills
agent-almanac install --team r-package-review --with-deps

# Target a specific framework
agent-almanac install create-skill --framework cursor

# Preview without writing
agent-almanac install --domain esoteric --dry-run

# Install to global scope
agent-almanac install create-skill --global

CLI resolves content from registries, selects appropriate adapter for each detected framework, writes files to framework-specific paths (.claude/skills/ for Claude Code, .cursor/rules/ for Cursor).

Got: Output confirms number of items installed + target framework(s). Installed content appears in correct framework directory.

If fail: Items not found? Verify ID matches name field in registry (skills/_registry.yml, agents/_registry.yml, teams/_registry.yml). Files already exist + installation skipped? Use --force to overwrite.

Step 4: Verify Installation

Run health check on all installed content:

agent-almanac audit

Audit specific framework or scope:

agent-almanac audit --framework claude-code
agent-almanac audit --global

See what currently installed:

agent-almanac list --installed

Got: Audit reports all installed items healthy with no broken references. --installed listing shows each item with type + framework.

If fail: Audit reports broken items? Reinstall with --force. Symlinks broken? Verify almanac source path hasn't moved. Run agent-almanac install <broken-id> --force to repair.

Step 5: Manage with Manifest (Optional)

Reproducible setups → use declarative agent-almanac.yml manifest:

# Generate a starter manifest
agent-almanac init

Creates agent-almanac.yml in current directory with detected frameworks + placeholder content lists. Edit file to declare desired skills, agents, teams:

source: /path/to/agent-almanac
frameworks:
  - claude-code
  - cursor
skills:
  - create-skill
  - domain:r-packages
agents:
  - r-developer
teams:
  - r-package-review

Then install everything declared in manifest:

agent-almanac install

Reconcile installed state with manifest (install missing, remove extra):

agent-almanac sync
agent-almanac sync --dry-run  # Preview first

Got: Running install with no arguments reads manifest + installs all declared content. Running sync brings installed state into alignment with manifest, adding missing items + removing undeclared.

If fail: sync reports "No agent-almanac.yml found"? Run agent-almanac init first. Manifest resolves to 0 items? Check skill/agent/team IDs match registry entries exact. Comment lines starting with # ignored.

Step 6: Manage Teams as Campfires (Optional)

Campfire commands provide warm, team-oriented alternative to install --team:

# Browse all available team circles
agent-almanac campfire --all

# Inspect a specific circle (members, practices, pattern)
agent-almanac campfire tending

# See shared agents between teams (hearth-keepers)
agent-almanac campfire --map

# Gather a team (install with arrival ceremony)
agent-almanac gather tending
agent-almanac gather tending --ceremonial    # Show each skill arriving
agent-almanac gather tending --only mystic,gardener  # Partial gathering

# Check fire health (burning / embers / cold)
agent-almanac tend

# Scatter a team (uninstall with farewell)
agent-almanac scatter tending

Campfire state tracked in .agent-almanac/state.json (git-ignored, local to project). Fires have thermal states: burning (used within 7 days), embers (within 30 days), cold (30+ days). Running tend warms all fires + reports health.

Shared skills protected during scatter — if skill needed by another gathered fire, stays installed. Shared agents walk between fires rather than being duplicated.

All campfire commands support --quiet (standard reporter output) + --json (machine-parseable) for scripting.

Got: Teams gathered + managed with state tracking. campfire --all shows fire states. tend reports health.

If fail: Campfire state corrupted? Delete .agent-almanac/state.json + re-gather teams. gather fails? Check team name matches entry in teams/_registry.yml.

Checks

  • agent-almanac detect shows expected frameworks
  • agent-almanac list --installed shows all intended content
  • agent-almanac audit reports no broken items
  • Installed skills resolve in target framework (/skill-name works in Claude Code)
  • Using manifest → agent-almanac sync --dry-run reports no changes needed

Pitfalls

  • Forgetting --with-deps for agents + teams: Installing agent without --with-deps installs only agent definition, not referenced skills. Agent present but unable to follow skill procedures. Always use --with-deps for agents + teams unless already installed dependencies separately.
  • Manifest drift: After manual install or remove content, manifest falls out of sync with actual installed state. Run agent-almanac sync periodically, or always install through manifest to keep aligned.
  • Scope confusion (project vs global): Content installed with --global goes to ~/.claude/skills/ (or equivalent); project-scope content goes to .claude/skills/ in current directory. Skill not found? Check whether installed in wrong scope.
  • Stale source path: agent-almanac repository moved or renamed? --source path in manifests + auto-detection breaks. Update source field in agent-almanac.yml or re-run agent-almanac init.
  • Framework not detected: Detector looks for specific files + directories. Freshly initialized project may not have these yet. Use --framework <id> explicit until project has expected structure, or rely on universal adapter.
  • Campfire thermal state confusion: Fires go cold after 30 days without use. Running agent-almanac tend resets timer for all gathered fires. Fire shows as "cold" → still fully installed — thermal state reflects recency of use, not installation health.

See Also

  • create-skill -- author new skills to add to almanac before installing
  • configure-mcp-server -- set up MCP servers that agents may need after installation
  • write-claude-md -- configure CLAUDE.md to reference installed skills
  • audit-discovery-symlinks -- diagnose symlink issues for Claude Code skill discovery
  • design-cli-output -- terminal output patterns used by CLI reporter + campfire ceremony

GitHub 저장소

pjt222/agent-almanac
경로: i18n/caveman/skills/install-almanac-content
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

연관 스킬

content-collections

메타

이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.

스킬 보기

polymarket

메타

이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.

스킬 보기

creating-opencode-plugins

메타

이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.

스킬 보기

sglang

메타

SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.

스킬 보기