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

ai-request-skillai 请求技能

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

3

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lebsral/dspy-programming-not-prompting-lms-skills --skill ai-request-skill

简介

用于请求或共建缺失的 DSPy 技能模块。

  • 支持直接创建 GitHub Issue 或 Pull Request。
  • 需明确技能目标与预期行为定义。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 建议先验证现有技能库是否已有类似实现。
  • ai-request-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Request or Build a Missing Skill

The user needs a DSPy capability that doesn't have a skill yet. Help them contribute it or request it.

This skill always ends with a concrete action on GitHub:

  • Path A (Build): Create the skill files, commit, push, and open a pull request to lebsral/DSPy-Programming-not-prompting-LMs-skills
  • Path B (Request): File a GitHub issue on lebsral/DSPy-Programming-not-prompting-LMs-skills describing what's needed

Do not stop at "here's what the PR/issue would look like" — actually create it using gh pr create or gh issue create.

Step 1: Confirm the gap

If $ARGUMENTS is provided, use it. Otherwise ask: "What DSPy capability do you need that isn't covered by an existing skill?"

Verify this is something DSPy actually supports. If it's outside DSPy's scope entirely (e.g., "build a React frontend"), say so and suggest appropriate tools instead.

Check the existing skills in skills/ or ai-* to make sure there isn't already a skill that covers this. If there's a close match, suggest it instead.

Summarize back to the user:

  • What they need: one sentence
  • DSPy features involved: which DSPy modules, integrations, or patterns are relevant
  • Closest existing skill: what's close but doesn't quite fit

Step 2: Choose a path

Ask the user:

Would you like to: 1. Build the skill — I'll help you create it with proper testing and prepare a PR 2. Request the skill — I'll draft a GitHub issue so the maintainers know it's needed

Path A: Build the skill

Use skill-creator if available

Check whether the /skill-creator skill is available (it's from the anthropics/skills repo). If available, delegate to it — it handles the full create-test-iterate workflow including evaluation, benchmarking, and description optimization.

When delegating to /skill-creator, provide this DSPy-specific context:

Repo conventions for this skill: - Dual naming: ai-<problem> prefix for problem-first skills (e.g., ai-observability), dspy-<concept> prefix for API-first skills (e.g., dspy-signatures) - Web developer language in descriptions — use phrases developers actually say ("monitor AI quality", "search docs"), not ML jargon - Provider-agnostic: don't hardcode specific LM providers, use dspy.LM("openai/gpt-4o-mini") as default examples - SKILL.md under 500 lines; overflow goes to examples.md or reference.md - Reference docs/dspy-reference.md for correct DSPy API usage - Test prompts should be realistic developer requests, not abstract ML tasks DSPy patterns to include (based on what the skill covers): - Data loading: CSV, JSON, transcripts (VTT, LiveKit, Recall), Langfuse traces - Signatures: class-based with typed fields, Pydantic models for structured output - Modules: dspy.Predict, ChainOfThought, ReAct — with guidance on when to use each - Validation: dspy.Assert (hard) vs dspy.Suggest (soft) integrated in forward() - Evaluation: dspy.Evaluate with custom metrics - Optimization: BootstrapFewShot for quick start, MIPROv2 for production - Save/load: program.save() / program.load() for deployment Skill structure: `` skills/ai-<problem>/ ├── SKILL.md # Main instructions (required) ├── examples.md # 2-3 worked examples (recommended) └── reference.md # Deep reference material (if needed) ` **SKILL.md body pattern** (follow what other skills in this repo do): 1. Step to gather requirements (ask 2-4 questions about the user's specific needs) 2. Implementation steps with DSPy code examples 3. Data loading patterns relevant to the problem domain 4. Evaluation and optimization step 5. Save/load and deployment 6. Next steps pointing to related skills (e.g., /ai-improving-accuracy, /ai-serving-apis`)

Then let skill-creator run its workflow: draft → test → review → iterate → package.

If skill-creator is NOT available

Build the skill manually following the conventions above. Install skill-creator for future use:

npx skills add anthropics/skills/skill-creator

Or from GitHub:

# Clone and copy
git clone https://github.com/anthropics/skills.git /tmp/anthropic-skills
cp -r /tmp/anthropic-skills/skills/skill-creator ~/.claude/skills/

Write the SKILL.md

---
name: ai-<problem-name>
description: "<What problem it solves>. Use when <trigger phrases the user would say>."
---

Read 2-3 existing skills in skills/ to match the tone and structure. Key things to get right:

Description field — This is how Claude decides whether to use the skill. Be specific about trigger phrases. Include both what the skill does AND when to use it. Err on the side of being "pushy" — Claude tends to under-trigger skills, so include edge cases:

# Bad: too vague
description: "Help with AI observability"

# Good: specific triggers, covers edge cases
description: "Monitor your AI's quality, latency, and cost in production. Use when you need to track AI accuracy over time, detect model degradation, set up alerts for quality drops, log predictions, measure production performance, or answer 'is our AI still working well?'"

Code examples — Every code block should be copy-pasteable. Include imports, LM configuration, and a usage example at the bottom. Use docs/dspy-reference.md for correct API patterns.

examples.md — Create 2-3 realistic end-to-end examples. Each should show a complete working program, not just fragments. Include data loading, the DSPy module, evaluation, and a usage section.

Test the skill

Create 2-3 test prompts — realistic requests a developer would make. Run them with the skill active and verify the outputs make sense. If you have access to subagents, run with-skill and without-skill baselines to measure impact.

Submit the PR

After creating (and optionally testing) the skill files, submit a pull request. Do all of these steps — don't stop at "here's what to do":

  1. Update README.md — add a row to the problem catalog table in the appropriate position
  2. Create a branch: git checkout -b add-ai-<problem-name>
  3. Stage and commit: git add skills/ai-<problem-name>/ README.md && git commit -m "Add ai-<problem-name> skill"
  4. Push: git push -u origin add-ai-<problem-name>
  5. Open the PR:
gh pr create \
  --repo lebsral/DSPy-Programming-not-prompting-LMs-skills \
  --title "Add ai-<problem-name> skill" \
  --body "$(cat <<'EOF'
## Summary
- **Problem**: <what the user is solving>
- **DSPy features**: <modules, patterns used>
- **Example invocation**: `/ai-<problem-name> <example prompt>`

## Files
- `skills/ai-<problem-name>/SKILL.md` — main instructions
- `skills/ai-<problem-name>/examples.md` — worked examples
- `README.md` — catalog table updated
EOF
)"

Return the PR URL to the user when done.

Path B: Request the skill

File a GitHub issue on the repo. Do not just draft it — actually submit it:

gh issue create \
  --repo lebsral/DSPy-Programming-not-prompting-LMs-skills \
  --title "Skill request: ai-<problem-name>" \
  --assignee lebsral \
  --body "$(cat <<'EOF'
## Problem
<What the user is trying to do, in their words>

## DSPy capability
<Which DSPy modules, integrations, or patterns would power this>

## Example use case
<A concrete scenario where this skill would help>

## Suggested trigger phrases
<2-3 phrases a developer might say that should route to this skill>
EOF
)"

Return the issue URL to the user when done.

Quality checklist

Before submitting a new skill (via PR or skill-creator), verify:

  • Name follows ai-<problem> convention (problem-first, not DSPy-concept-first)
  • Description includes specific trigger phrases a developer would actually say
  • SKILL.md is under 500 lines
  • Code examples are provider-agnostic (no hardcoded API keys or specific providers)
  • Code examples include imports, LM config, and are copy-pasteable
  • Includes data loading patterns relevant to the problem domain
  • Has evaluation/optimization step (not just "build it and hope")
  • Points to related skills in "next steps" (e.g., /ai-improving-accuracy)
  • README.md catalog table updated with new row
  • ai-do https://github.com/lebsral/DSPy-Programming-not-prompting-LMs-skills/blob/main/skills/ai-do/SKILL.md updated with new row in PR or gh issue

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.93%
按下载量换算33

Claude

29.93%
按下载量换算27

Cursor

20.66%
按下载量换算19

Gemini CLI

9.46%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills