Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

try尝试

Agent Skill

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

总安装

349

周安装

15

GitHub Stars

公开资料未说明

下载量

122
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/abpai/skills --skill try

简介

try 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 GitHub 安装,需结合原始 README 核验具体用法和权限边界。
  • 安装前建议确认维护状态及是否会触发联网、命令执行或文件读写。
  • 注意该技能当前分类为研究检索,功能以实际文档为准。

SKILL.md

Try: Structured Library Evaluation

You are evaluating a library the user wants to decide whether to adopt. Your job is to bridge the gap between a too-simple quickstart and full codebase integration. You will:

  1. Set up an isolated workspace using the try CLI (or fallback)
  2. Discover the library's real API surface (not just what the README shows)
  3. Write small, runnable scripts that each prove ONE primitive works
  4. Write a composition script / prompt-driven demo that wires primitives together
  5. Document everything in Tutorial.md with an honest verdict

Keep this scoped to disposable exploration only. Do not refactor or integrate the target library into the user's production repository during this skill.

This is for evaluating something new for adoption. If the user wants to understand a project they already have, suggest the scratch skill instead.

Invocation Patterns

The user will say something like:

  • try ComposioHQ/agent-orchestrator
  • try https://github.com/some/repo — help me build X
  • evaluate langgraph, I want to understand the state machine primitives
  • kick the tires on better-auth

They may optionally provide:

  • A screenshot or context about what they want to build
  • A specific angle ("focus on the streaming API")
  • A constraint ("I need this to work with Bun")

When NOT to use this skill: If the user wants to understand a project they already work in, suggest the scratch skill instead. The try skill is for evaluating something new before committing to it.

Phase 0: Setup

WORKSPACE SETUP
───────────────
  ┌──────────────┐     ┌──────────────┐     ┌──────────────┐
  │ User asks to │     │ try CLI      │     │ Create       │
  │ try X        │────>│ or fallback  │────>│ explorations/│
  │              │     │ workspace    │     │ workspace    │
  └──────────────┘     └──────────────┘     └──────────────┘
  1. Determine the target: Parse the repo URL, package name, or shorthand.
  2. Check if the try CLI is available: run try --help. If it succeeds, use the try CLI workflow. If not, fall back to manual setup.

Try CLI workflow (preferred)

The try CLI manages ephemeral workspaces in ~/src/tries/ with date-prefixed directories, interactive selection, and lifecycle features (graduate, rename, delete).

  • GitHub repotry clone <url> — creates ~/src/tries/YYYY-MM-DD-<name>/
  • npm/pip package → use try interactive mode to create a new workspace, then cd into it, init, and install the package:

- npm: npm init -y && npm i <pkg> - pip: python -m venv.venv && source.venv/bin/activate && pip install <pkg>

Fallback (no try CLI)

  • GitHub repo → git clone --depth 1 into /tmp/try-<name>/
  • npm package → mkdir /tmp/try-<name> && cd $_ && npm init -y && npm i <pkg>
  • pip package → mkdir /tmp/try-<name> && cd $_ && python -m venv.venv && source.venv/bin/activate && pip install <pkg>

Workspace structure

Once the workspace exists, create an explorations/ subdirectory for all generated scripts and Tutorial.md. This keeps your artifacts separate from cloned repo content.

~/src/tries/YYYY-MM-DD-<name>/     (via try CLI)
├── <cloned repo content>
└── explorations/
    ├── 01-<primitive>.{ts,py,js}
    ├── 02-<primitive>.{ts,py,js}
    ├── ...
    ├── 99-compose.{ts,py,js}
    └── Tutorial.md

Phase 1: Recon

Goal: Understand the library's actual surface area. Do NOT start writing code yet.

DISTILL CHECK
─────────────
  Is the distill skill available in this session?
    YES → use it for a primitive inventory
    NO  → manual recon (see below)

If the distill skill is available (check the current host's available skills):

  1. Use the distill skill on the cloned repo.
  2. Request a primitive inventory as the output shape — a concise list of 5-8 primitives with one-line descriptions. This is a first-pass identification, not a full iterative distillation.
  3. Provide the user's stated goal or angle as context.
  4. Use distill's output as your primitive inventory. Skip the manual recon below and proceed to Phase 2.

If the distill skill is NOT available, perform manual recon:

RECON SEQUENCE
──────────────
  README → package.json/pyproject.toml → src/ tree → exports → examples/ → tests/

Read in this order. Stop at each step and extract:

  1. README / docs/: What does the library claim to do? What's the mental model?
  2. Package manifest: What are the dependencies? What does it actually export?
  3. Source tree: find src/ -name "*.ts" -o -name "*.py" | head -40 — get the shape.
  4. Public API: Read the main entry point (index.ts, init.py, mod.rs). Extract every public function/class/type. This is the REAL API, not the README's cherry-picked version.
  5. Examples/: If they exist, read them. Note what they cover and what they skip.
  6. Tests/: Read 2-3 test files. Tests reveal edge cases, expected failures, and the library author's actual mental model better than docs do.

After recon, produce a mental inventory (don't write this to a file yet, just hold it):

PRIMITIVES IDENTIFIED
─────────────────────
  1. <PrimitiveName> — what it does, one line
  2. <PrimitiveName> — what it does, one line
  ...
  N. <Composition> — how they wire together

If the user gave a specific angle ("help me build an agent orchestrator"), filter primitives to what's relevant. If not, cover the top 5-8 most important ones.

Phase 2: Primitive Scripts

Goal: One script per primitive. Each script is self-contained and runnable.

SCRIPT STRUCTURE
────────────────
  ┌─ explorations/01-<name>.ts ──────────────────────┐
  │                                                   │
  │  // PRIMITIVE: <Name>                             │
  │  // WHAT: <one-line description>                  │
  │  // EXPECT: <what should happen when you run it>  │
  │                                                   │
  │  <minimal setup>                                  │
  │  <exercise the primitive>                         │
  │  <print/assert the result>                        │
  │                                                   │
  │  // FINDINGS:                                     │
  │  // - <what you learned>                          │
  │  // - <gotchas, if any>                           │
  │  // - <what the docs didn't mention>              │
  │                                                   │
  └───────────────────────────────────────────────────┘

Rules for primitive scripts:

  • One concept per file. No script should exercise more than one primitive.
  • Actually run each script after writing it. Capture stdout/stderr.
  • If it fails, debug it. The failure itself is valuable intel — note it in FINDINGS.
  • If the docs are wrong, note it. This is one of the main values of the try skill.
  • Use the library's native patterns, not wrappers. You want to feel the raw API.
  • Name files with numeric prefix for reading order: 01-, 02-, 03-, etc.
  • Match the library's language. If it's a TS library, write TS. If Python, write Python.

After each script runs, update your mental model. Adjust the plan for remaining scripts if you discover something unexpected.

Phase 3: Composition Script

Goal: Wire 2-4 primitives together into something that resembles a real use case.

  explorations/99-compose.ts
  ──────────────────────────
  // COMPOSITION: <what this demonstrates>
  // PRIMITIVES USED: 01, 03, 05
  // SCENARIO: <realistic-ish use case>

This is where you find out if the library's primitives actually compose well or if there are impedance mismatches. The composition script should:

  • Use the primitives you proved work in Phase 2
  • Simulate a realistic (but minimal) workflow
  • Handle at least one error case
  • Print clear output showing what happened at each step

If the user provided a prompt, screenshot, or description of what they want to build, the composition script MUST target that scenario. This is the primary deliverable — a demo that answers their specific question.

If no specific prompt was given, compose the most natural real-world use case that emerged from recon. Pick the scenario that exercises the most interesting primitive interactions discovered during Phase 2.

Phase 4: Tutorial.md

Write explorations/Tutorial.md. Structure:

# Trying: <library-name>

> <one-line verdict: would you use this in production?>

## What It Is
<2-3 sentences. What problem does it solve? What's the mental model?>

## Key Primitives

### 1. <Primitive Name>
<What it does. What surprised you. Link to explorations/01-*.>

### 2. <Primitive Name>
...

## Composition
<How the primitives wire together. What worked. What was awkward.
Link to explorations/99-compose.>

## Gotchas
<Bulleted list. Things the docs don't tell you. Failure modes.
Missing features. Version issues.>

## Verdict
<Honest assessment:>
<- Maturity (alpha/beta/production)>
<- API ergonomics (1-5)>
<- Docs quality (1-5)>
<- Would I build on this? Why/why not?>
<- What I'd want to see before committing>

Execution Discipline

Throughout all phases, follow this cadence:

LOOP (per script)
─────────────────
  WRITE ──> RUN ──> OBSERVE ──> NOTE FINDINGS
    ^                                 │
    └─────── ADJUST PLAN ─────────────┘
  • Write small, run often. Don't write 5 scripts then run them all.
  • Capture real output. Include actual stdout in Tutorial.md findings, trimmed.
  • If something takes >2 minutes to debug, note it as a complexity signal and move on.
  • Don't fake it. If a primitive doesn't work, say so. The user is evaluating whether to invest time in this library. Honest signal > polished demo.

Output Checklist

Before declaring done, verify:

  ✓ explorations/ contains 3-8 numbered primitive scripts
  ✓ explorations/99-compose.{ts,py} exists and runs
  ✓ Every script in explorations/ was actually executed
  ✓ explorations/Tutorial.md exists with all sections filled
  ✓ Tutorial.md verdict is honest, not promotional
  ✓ All gotchas from debugging are captured

Edge Cases

  • Repo requires API keys: Note it, mock if possible, skip if not. Don't ask the user for keys unless they offered.
  • Repo is huge (monorepo): Focus on the specific package the user mentioned. Use find and grep to navigate, don't try to read everything.
  • Repo is broken / won't install: That IS the finding. Write a short Tutorial.md noting what failed and bail. This saves the user hours.
  • Library is for a different runtime (e.g., user wants Bun but lib is Node-only): Try it anyway, note compatibility issues.
  • User provides a screenshot: Use the screenshot as context for what the composition script should approximate.

Update Check

On first use in a session, silently check for a newer version:

  1. Fetch https://raw.githubusercontent.com/abpai/skills/main/versions.json.
  2. Compare the version for try against this file's metadata.version.
  3. If the remote version is newer, pause before the main task and ask: try update available (local {X.Y} → remote {A.B}). Would you like me to update it for you first? I can run npx skills update try for you.
  4. If the user says yes, run the update before continuing.
  5. If the user says no, continue with the current local version.
  6. If the fetch fails or web access is unavailable, skip silently.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.81%
按下载量换算47

Claude

29.42%
按下载量换算36

Cursor

19.39%
按下载量换算24

Gemini CLI

10.27%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills