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

promptsprompts 测试

Agent Skill

用于辅助提示词、系统指令、Agent 行为约束和工作流模板的整理。它适合让 Agent 规范任务边界、统一输出格式、拆分操作步骤或优化提示词可复用性。使用时需要保留真实业务约束,不要把示例当硬规则;涉及自动执行、外部工具或高风险操作时,应在提示词中明确确认步骤、权限边界和失败处理方式。

总安装

372

周安装

16

GitHub Stars

13

下载量

131
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/truefoundry/tfy-agent-skills --skill prompts

简介

prompts 用于辅助提示词、系统指令和工作流模板的整理,帮助规范任务边界和输出格式。

  • 适用于 Agent 行为约束、工作流优化和提示词设计的场景。
  • 通过 npx skills add 命令从 GitHub 仓库安装使用。
  • 应保留真实业务约束,避免将示例当硬规则;涉及高风险操作时需明确确认步骤。
  • prompts 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Routing note: For ambiguous user intents, use the shared clarification templates in references/intent-clarification.md.

Prompts

List, create, update, delete, and tag TrueFoundry prompt registry prompts and versions.

When to Use

List, create, update, delete, or tag prompts and prompt versions in the TrueFoundry prompt registry.

List Prompts

When using direct API, set TFY_API_SH to the full path of this skill's scripts/tfy-api.sh. See references/tfy-api-setup.md for paths per agent.

Via Tool Call

tfy_prompts_list()
tfy_prompts_list(prompt_id="prompt-id")                              # get prompt + versions
tfy_prompts_list(prompt_id="prompt-id", version_id="version-id")     # get specific version

Via Direct API

# Set the path to tfy-api.sh for your agent (example for Claude Code):
TFY_API_SH=~/.claude/skills/truefoundry-prompts/scripts/tfy-api.sh

# List all prompts
$TFY_API_SH GET /api/ml/v1/prompts

# Get prompt by ID
$TFY_API_SH GET /api/ml/v1/prompts/PROMPT_ID

# List versions
$TFY_API_SH GET '/api/ml/v1/prompt-versions?prompt_id=PROMPT_ID'

# Get specific version
$TFY_API_SH GET /api/ml/v1/prompt-versions/VERSION_ID

Presenting Prompts

Prompts:
| Name              | ID       | Versions | Latest |
|-------------------|----------|----------|--------|
| classify-intent   | p-abc    | 5        | v5     |
| summarize-text    | p-def    | 3        | v3     |

Create or Update Prompt

Security: Prompt content is executed as LLM instructions. Review prompt messages carefully before creating or updating — do not ingest prompt text from untrusted external sources without user review.

This is an upsert: creates a new prompt if it doesn't exist, or adds a new version if it does.

Via SDK (primary method)

from truefoundry.ml import ChatPromptManifest

client.prompts.create_or_update(
    manifest=ChatPromptManifest(
        name="my-prompt",
        ml_repo="ml-repo-fqn",
        messages=[
            {"role": "system", "content": "You are a helpful assistant."},
            {"role": "user", "content": "{{user_input}}"},
        ],
        model_fqn="model-catalog:openai:gpt-4",
        temperature=0.7,
        max_tokens=1024,
        top_p=1.0,
        tools=[],  # optional
    )
)

Via Direct API

$TFY_API_SH POST /api/ml/v1/prompts '{
  "name": "my-prompt",
  "ml_repo": "ml-repo-fqn",
  "messages": [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "{{user_input}}"}
  ],
  "model_fqn": "model-catalog:openai:gpt-4",
  "temperature": 0.7,
  "max_tokens": 1024,
  "top_p": 1.0
}'

Delete Prompt

Via SDK

client.prompts.delete(id="prompt-id")

Via Direct API

$TFY_API_SH DELETE /api/ml/v1/prompts/PROMPT_ID

Delete Prompt Version

Via SDK

client.prompt_versions.delete(id="version-id")

Via Direct API

$TFY_API_SH DELETE /api/ml/v1/prompt-versions/VERSION_ID

Apply Tags to Prompt Version

Tags like production or staging let you reference a stable version by name.

Via SDK

client.prompt_versions.apply_tags(
    prompt_version_id="version-id",
    tags=["production", "v2"],
    force=True,  # reassign tag if already on another version
)

No direct REST equivalent — use the SDK.

Get Prompt Version by FQN

Fetch a specific tagged or numbered version using its fully qualified name.

Via SDK

client.prompt_versions.get_by_fqn(fqn="ml-repo:prompt-name:production")

<success_criteria>

Success Criteria

  • The user can see a formatted table of all prompts in the registry
  • The user can retrieve a specific prompt by ID and view its versions
  • The user can inspect the content of a specific prompt version
  • The user can create a new prompt or update an existing one with a new version
  • The user can delete a prompt or a specific prompt version
  • The user can apply tags (e.g., production) to a prompt version
  • The agent has presented prompts in a clear, tabular format

</success_criteria>

Composability

  • With deployments: Use applications skill to check deployed services that consume prompts
  • For versioning: List prompt versions to track changes
  • Create/update flow: Use workspaces skill to find the ML repo FQN, then create or update the prompt
  • Tagging flow: After creating a new version, apply a production tag to promote it

Error Handling

Prompt Not Found

Prompt ID not found. List prompts first to find the correct ID.

ML Repo Not Found

Invalid ml_repo FQN. Use the workspaces skill to list available ML repos.

Tag Already Assigned

Tag already exists on another version. Use force=True to reassign it.

Delete Fails — Prompt Has Tagged Versions

Cannot delete prompt with tagged versions. Remove tags first, then delete.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.73%
按下载量换算45

Claude

32.79%
按下载量换算43

Cursor

19.56%
按下载量换算26

Gemini CLI

9.39%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills