Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计提醒

apm-usageapm 使用情况

Agent Skill

apm-usage 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

661

周安装

8

GitHub Stars

542

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:apm-usage(apm 使用情况)
来源仓库:https://github.com/mizchi/chezmoi-dotfiles
仓库路径:skills/apm-usage
安装命令:
npx skills add https://github.com/mizchi/chezmoi-dotfiles --skill apm-usage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/mizchi/chezmoi-dotfiles --skill apm-usage

简介

Agent Package Manager 依赖管理工具,类似 npm 但专用于 AI 代理的技能生态管理。

  • 支持全局安装和项目级依赖声明,可管理提示词、MCP 服务器和自定义技能模块。
  • 提供版本锁定、子目录技能加载和用户级配置路径,适配不同宿主环境的技能隔离需求。
  • 操作前应检查磁盘空间和网络连接,避免因依赖包过大或下载中断导致安装失败。
  • apm-usage 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

APM (Agent Package Manager)

APM is a dependency manager for AI agent skills, instructions, prompts, and MCP servers. Think of it as npm for agent configuration.

When this skill applies

  • "add a skill to this project"
  • "install skills globally"
  • "create a skill for this repo"
  • "set up apm.yml"
  • "update agent dependencies"

Core commands

# Install all dependencies from apm.yml
apm install

# Install a specific package
apm install owner/repo
apm install owner/repo/skills/skill-name    # subdirectory skill
apm install owner/repo#v1.0.0               # pinned version

# Global (user-scope) install → ~/.claude/skills/
apm install -g owner/repo/skills/skill-name

# Update all to latest
apm install --update        # project scope
apm install -g --update     # global scope

# Remove
apm uninstall owner/repo
apm uninstall -g owner/repo

# Inspect
apm deps list               # project deps
apm deps list -g             # global deps
apm deps tree                # dependency tree
apm deps tree -g

# Security scan
apm audit

# Dry run (preview without changes)
apm install --dry-run

apm.yml manifest

name: my-project
version: 1.0.0
dependencies:
  apm:
    # GitHub shorthand
    - owner/repo
    - owner/repo#v1.0.0                  # pinned tag
    - owner/repo/skills/skill-name       # subdirectory

    # Non-GitHub hosts
    - gitlab.com/org/repo
    - git: git@gitlab.com:org/repo.git
      path: skills/my-skill
      ref: main

    # Local path (dev only, not for -g)
    - ./packages/my-skill

  mcp:
    - io.github.github/github-mcp-server
scripts: {}

scripts: の実例

scripts: は name → command のマップ。apm install 後の setup、開発中のワンショット処理を登録する:

scripts:
  postinstall: "echo 'skills installed; restart Claude Code to pick them up'"
  verify: "ls -1 .claude/skills | sort"
  audit: "apm audit"

呼び出し: apm run <name>(例: apm run verify)。postinstallapm install 成功時に自動実行される(hook)。ワンショット処理(例: apm run audit)は明示的に呼ぶ。

lockfile (apm.lock.yaml) の運用

apm installapm.lock.yaml を生成する。再現性を担保するため:

  • project スコープ: apm.lock.yamlcommit する(チーム間で同じ skill version を解決するため)。node_modules の package-lock と同じ発想
  • global スコープ: ~/.apm/apm.lock.yaml は chezmoi で同期すると新マシンで同じ version が入る
  • CI / 新マシンでは apm install --frozen-lockfile を使って drift を防ぐ(lockfile が manifest と一致しなければ fail)
  • lockfile を意図的に更新したいときだけ apm install --update

chezmoi との共存

chezmoi で dotfiles を管理している場合、APM との境界:

pathchezmoiAPM
~/.apm/apm.yml管理(source にコピー)読む
~/.apm/apm.lock.yaml管理(新マシン再現性のため)生成
~/.apm/apm_modules/ignore(大きいキャッシュ)管理
~/.claude/skills/<name>/ignore(APM-managed は chezmoi 対象外)展開先

chezmoi 側の .chezmoiignore に次を追加:

.apm/apm_modules
.claude/skills/<apm-managed-name>

自作 skill(chezmoi add で source にコピーしたもの)とは名前が衝突しないよう注意。衝突時は APM が install 時に上書きする。詳細は chezmoi-management skill を参照。

Creating skills in a repository

Follow the agentskills.io open standard. Publishing-focused guide (repo layout, tag/release, dependency declaration, verification checklist) is in references/publishing.md.

Directory structure

my-repo/
└── skills/
    └── my-skill/
        ├── SKILL.md           # Required
        ├── scripts/           # Optional: executable code
        ├── references/        # Optional: detailed docs
        └── assets/            # Optional: templates, resources

SKILL.md format

---
name: my-skill
description: One-line description of what this skill does and when to use it.
---

# Skill body

Instructions for the AI agent. Keep under 500 lines.
Move detailed reference material to references/ directory.

Frontmatter fields

FieldRequiredConstraints
nameYes1-64 chars, lowercase alphanumeric + hyphens, must match directory name
descriptionYes1-1024 chars, describe what + when
licenseNoSPDX identifier or license file reference
compatibilityNoEnvironment requirements (max 500 chars)
metadataNoArbitrary key-value pairs

Name validation rules

  • Lowercase letters, numbers, hyphens only
  • Cannot start or end with hyphen
  • No consecutive hyphens (--)
  • Must match the parent directory name

Users install with

apm install owner/my-repo/skills/my-skill

Skill patterns for library authors

Single skill in a library repo

my-library/
├── skills/
│   └── my-library-guide/
│       └── SKILL.md
├── src/
└── package.json

Multiple skills (monorepo)

my-org-skills/
├── skill-a/
│   └── SKILL.md
├── skill-b/
│   └── SKILL.md
└── skill-c/
    └── SKILL.md

Users install individually: apm install owner/my-org-skills/skill-a

Target detection

APM auto-detects deployment targets from project structure:

Directory existsTargetSkills deployed to
.claude/claude.claude/skills/
.github/copilot.github/skills/
.cursor/cursor.cursor/skills/ (if supported)
.codex/codex.agents/skills/

Override with --target claude or set target: in apm.yml.

Global vs project scope

Project (apm install)Global (apm install -g)
Manifest./apm.yml~/.apm/apm.yml
Modules./apm_modules/~/.apm/apm_modules/
Lockfile./apm.lock.yaml~/.apm/apm.lock.yaml
Deploy to./.claude/skills/~/.claude/skills/
Local .apm/ contentDeployedSkipped

Authentication

For private repos, APM resolves auth automatically:

  1. gh auth login (GH_TOKEN) — zero-config if already logged in
  2. git credential fill — OS keychain, SSH keys
  3. GITHUB_APM_PAT environment variable — for CI or explicit setup

No extra configuration needed if gh auth login is done.

Priority and conflict resolution

  • Local skills always override dependency skills on name collision
  • Dependencies processed in declaration order; first wins
  • apm install --force overwrites local files on collision

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.12%
按下载量换算23

Claude

32.11%
按下载量换算21

Cursor

18.63%
按下载量换算12

Gemini CLI

10.66%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills