Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

acquiring-skills获得技能

Agent Skill

acquiring-skills 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,327

周安装

57

GitHub Stars

2,398

下载量

465
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/letta-code --skill acquiring-skills

简介

该技能指导安全地发现和安装外部来源的新技能。acquiring-skills 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于扩展 Agent 能力,支持从可信或未经验证源获取功能。
  • 自动检查脚本内容,执行前需用户明确授权高风险操作。
  • 推荐优先使用 Letta 或 Anthropic 官方技能仓库。
  • 涉及代码执行时务必人工复核脚本逻辑与潜在风险。

SKILL.md

Acquiring New Skills

This skill teaches you how to safely discover and install skills from external sources.

SAFETY - READ THIS FIRST

Skills can contain:

  • Markdown files (.md) - Risk: prompt injection, misleading instructions
  • Scripts (Python, TypeScript, Bash) - Risk: malicious code execution

Trusted Sources (no user approval needed for download)

  • https://github.com/letta-ai/skills - Letta's community skills
  • https://github.com/anthropics/skills - Anthropic's official skills

Untrusted Sources (ALWAYS verify with user)

For ANY source other than letta-ai or anthropics:

  1. Ask the user before downloading
  2. Explain where the skill comes from
  3. Get explicit approval

Script Safety

Even for skills from trusted sources, ALWAYS:

  1. Read and inspect any scripts before executing them
  2. Understand what the script does
  3. Be wary of network calls, file operations, or system commands

When to Use This Skill

DO use when:

  • User asks for something where a skill likely exists (e.g., "help me test this webapp", "generate a PDF report")
  • You think "there's probably a skill that would bootstrap my understanding"
  • User explicitly asks about available skills or extending capabilities

DON'T use for:

  • General coding tasks you can already handle
  • Simple bug fixes or feature implementations
  • Tasks where you have sufficient knowledge

Ask Before Searching (Interactive Mode)

If you recognize a task that might have an associated skill, ask the user first:

"This sounds like something where a community skill might help (e.g., webapp testing with Playwright). Would you like me to look for available skills in the Letta or Anthropic repositories? This might take a minute, or I can start coding right away if you prefer."

The user may prefer to start immediately rather than wait for skill discovery.

Only proceed with skill acquisition if the user agrees.

Skill Repositories

RepositoryDescription
https://github.com/letta-ai/skillsCommunity skills for Letta agents
https://github.com/anthropics/skillsAnthropic's official Agent Skills

Browse these repositories to discover available skills. Check the README for skill listings.

Installation Locations

LocationPathWhen to Use
Agent-scoped~/.letta/agents/<agent-id>/skills/<skill>/Skills for a single agent (default for agent-specific capabilities)
Global~/.letta/skills/<skill>/General-purpose skills useful across projects
Project.skills/<skill>/Project-specific skills

Rule: Default to agent-scoped for changes that should apply only to the current agent. Use project for repo-specific skills. Use global only if all agents should inherit the skill.

How to Download Skills

Skills are directories containing SKILL.md and optionally scripts/, references/, examples/.

Method: Clone to /tmp, then copy

# 1. Clone the repo (shallow)
git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp

# 2. Copy the skill to your skills directory
# For agent-scoped (recommended default):
cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/agents/<agent-id>/skills/
# For global:
# cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/skills/
# For project:
# cp -r /tmp/skills-temp/skills/webapp-testing .skills/

# 3. Cleanup
rm -rf /tmp/skills-temp

Alternative: rsync (preserves permissions)

git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp
rsync -av /tmp/skills-temp/skills/webapp-testing/ ~/.letta/agents/<agent-id>/skills/webapp-testing/
rm -rf /tmp/skills-temp

Registering New Skills

After downloading a skill, it will be automatically discovered on the next message. Skills are discovered from ~/.letta/skills/, .skills/, and agent-scoped ~/.letta/agents/<agent-id>/skills/ directories.

Complete Example

User asks: "Can you help me test my React app's UI?"

  1. Recognize opportunity: Browser/webapp testing - likely has a skill
  2. Ask user: "Would you like me to look for webapp testing skills, or start coding right away?"
  3. If user agrees, find skill: Check anthropics/skills for webapp-testing
  4. Download (trusted source): git clone --depth 1 https://github.com/anthropics/skills /tmp/skills-temp cp -r /tmp/skills-temp/skills/webapp-testing ~/.letta/agents/<agent-id>/skills/ rm -rf /tmp/skills-temp
  5. Inspect scripts: Read any.py or.ts files before using them
  6. Invoke: Skill(skill: "webapp-testing")
  7. Use: Follow the skill's instructions for the user's task

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.94%
按下载量换算167

Claude

29.93%
按下载量换算139

Cursor

17.65%
按下载量换算82

Gemini CLI

8.93%
按下载量换算42

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills