スキル一覧に戻る

install-almanac-content

pjt222
更新日 2 days ago
6 閲覧
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

agent-almanac CLI → install skills/agents/teams into agentic frameworks.

Use When

  • New project → agentic skills/agents/teams
  • All skills from domain (r-packages, devops)
  • Multi-framework (Claude Code, Cursor, Copilot)
  • Declarative agent-almanac.yml manifest for reproducible
  • Audit installed content for broken symlinks / stale refs

In

  • Required: content to install (skill/agent/team IDs, e.g., create-skill, r-developer, r-package-review)
  • Optional: --domain <domain> → install all skills from domain
  • Optional: --framework <id> → target specific (default: auto-detect all)
  • Optional: --with-deps → install agent skills + team agents+skills
  • Optional: --dry-run → preview no write
  • Optional: --global → global scope not project
  • Optional: --force → overwrite existing
  • Optional: --source <path> → explicit almanac root

Do

Step 1: Detect frameworks

agent-almanac detect

Scans cwd for config files/dirs (.claude/, .cursor/, .github/copilot-instructions/, .agents/) + reports active.

→ Lists detected frameworks w/ adapter status. None → universal adapter (.agents/skills/) fallback.

If err: CLI not found → install + PATH. Detection nothing but framework present → --framework <id> explicit. Run agent-almanac list --domains → verify CLI reaches registries.

Step 2: Search

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

→ Results / filtered lists w/ IDs + descriptions.

If err: no results → broader keyword. Verify almanac root: agent-almanac list shows full count. No root → --source /path/to/agent-almanac.

Step 3: Install

# 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 from registries, selects adapter per framework, writes to framework-specific paths (.claude/skills/ for Claude Code, .cursor/rules/ for Cursor).

→ Output confirms # items + target framework. Content in correct dir.

If err: not found → verify ID matches name field in skills/_registry.yml / agents/_registry.yml / teams/_registry.yml. Files exist + skipped → --force.

Step 4: Verify install

agent-almanac audit

Audit specific framework/scope:

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

See installed:

agent-almanac list --installed

→ Audit → all healthy, no broken refs. --installed shows each w/ type + framework.

If err: broken → reinstall w/ --force. Broken symlinks → verify almanac source path not moved. Repair: agent-almanac install <broken-id> --force.

Step 5: Manifest (opt)

# Generate a starter manifest
agent-almanac init

Creates agent-almanac.yml w/ detected frameworks + placeholder content. Edit:

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

Install from manifest:

agent-almanac install

Reconcile installed w/ manifest (install missing, remove extra):

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

install no args reads manifest + installs all. sync aligns state w/ manifest (adds missing, removes undeclared).

If err: sync "No agent-almanac.yml" → agent-almanac init first. 0 items → check IDs match registry exactly. # lines ignored.

Step 6: Teams as campfires (opt)

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

State tracked in .agent-almanac/state.json (git-ignored, local). Thermal states: burning (used <7 days), embers (<30 days), cold (30+). tend warms all fires + reports health.

Shared skills protected during scatter — needed by another gathered fire → remains. Shared agents walk between fires not duplicated.

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

→ Teams gathered + managed w/ state. campfire --all shows states. tend reports health.

If err: state corrupted → delete .agent-almanac/state.json + re-gather. gather fails → team name must match teams/_registry.yml.

Check

  • agent-almanac detect shows expected frameworks
  • agent-almanac list --installed shows intended content
  • agent-almanac audit no broken
  • Installed skills resolve in framework (e.g., /skill-name works)
  • agent-almanac sync --dry-run no changes needed (if manifest)

Traps

  • Forget --with-deps for agents + teams: installs only def, not skills. Agent present but can't follow procedures. Always --with-deps unless deps already installed.
  • Manifest drift: manual install/remove → out of sync. Run sync periodically or always install through manifest.
  • Scope confusion (project vs global): --global~/.claude/skills/. Project → .claude/skills/ in cwd. Not found → check scope.
  • Stale source path: repo moved/renamed → --source in manifests + auto-detect breaks. Update source in agent-almanac.yml or re-run init.
  • Framework not detected: detector looks for specific files/dirs. Fresh project may lack → --framework <id> explicit or rely on universal.
  • Campfire thermal confusion: fires cold after 30 days. tend resets timer. Cold ≠ broken install — state reflects recency of use, not install health.

  • create-skill — author new skills before install
  • configure-mcp-server — MCP servers agents may need post-install
  • write-claude-md — reference installed skills in CLAUDE.md
  • audit-discovery-symlinks — diagnose symlink issues for Claude Code discovery
  • design-cli-output — terminal patterns used by reporter + campfire ceremony

GitHub リポジトリ

pjt222/agent-almanac
パス: i18n/caveman-ultra/skills/install-almanac-content
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

関連スキル

content-collections

メタ

このスキルは、Content Collections(Markdown/MDXファイルを型安全なデータコレクションに変換するTypeScriptファーストのツール)の本番環境でテストされた設定を提供します。Zodバリデーションによる型安全性を実現し、ブログ、ドキュメントサイト、コンテンツ重視のVite + Reactアプリケーション構築時にご利用ください。Viteプラグインの設定、MDXコンパイルから、デプロイ最適化、スキーマバリデーションまで、すべてを網羅しています。

スキルを見る

polymarket

メタ

このスキルは、開発者がPolymarket予測市場プラットフォームを活用したアプリケーション構築を可能にします。API統合による取引や市場データの取得に加え、WebSocketを介したリアルタイムデータストリーミングにより、ライブ取引や市場活動を監視できます。取引戦略の実装や、ライブ市場更新を処理するツールの作成にご利用ください。

スキルを見る

creating-opencode-plugins

メタ

このスキルは、開発者がコマンド、ファイル、LSP操作など25種類以上のイベントタイプにフックするOpenCodeプラグインを作成することを支援します。JavaScript/TypeScriptモジュール向けに、プラグイン構造、イベントAPI仕様、および実装パターンを提供します。カスタムイベント駆動ロジックでOpenCode AIアシスタントのライフサイクルをインターセプト、監視、または拡張する必要がある場合にご利用ください。

スキルを見る

sglang

メタ

SGLangは、高性能なLLMサービングフレームワークであり、RadixAttentionプレフィックスキャッシュを活用したJSON、正規表現、エージェントワークフロー向けの高速で構造化された生成を特長とします。特にプレフィックスが繰り返されるタスクにおいて、大幅に高速な推論を実現し、複雑な構造化出力やマルチターン対話に最適です。制約付きデコードが必要な場合や、広範なプレフィックス共有を伴うアプリケーションを構築する場合は、vLLMなどの代替案ではなくSGLangを選択してください。

スキルを見る