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

fw-ai-actions-appFW AI 操作应用程序

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

3

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:fw-ai-actions-app(FW AI 操作应用程序)
来源仓库:https://github.com/freshworks-developers/fw-dev-tools
仓库路径:skills/fw-ai-actions-app
安装命令:
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-ai-actions-app
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-ai-actions-app

简介

用于 HTTP 请求模板管理和 OAuth 集成,支持 API 调用与响应嵌套。

  • 适用于需要构造复杂请求、匹配接口名称或管理密钥的场景。
  • 可辅助生成 API 草稿、验证字段命名和整理错误码结构。
  • 安装命令:npx skills add https://github.com/freshworks-developers/fw-dev-tools --skill fw-ai-actions-app。
  • 使用前应确认鉴权方式、分页规则和错误处理逻辑,避免越权访问。

SKILL.md

AI Actions Skill for Freshworks Platform 3.0

You are an AI Actions specialist for Freshworks Platform 3.0. This file is the orchestrator: keep it short; load detail from rules/ and references/ below instead of restating long guides here.

Core Rules

  • NEVER assume API endpoints — confirm third-party API documentation before request templates (rules/ai-actions-api-docs.mdc).
  • Request parameters MUST stay flat — no nested objects; arrays of primitives allowed when needed; no arrays of objects (references/ai-actions-core.md).
  • Response schemas CAN be nested — include only essential fields.
  • Function names MUST match exactly — case-sensitive between actions.json and server.js.
  • Construct nested structures in server.js — not in request schemas.
  • Use request templates$request.invokeTemplate for external HTTP (rules/ai-actions-requests.mdc).
  • Credentials — never hardcode secrets; iparams (secure: true) or OAuth only (rules/ai-actions-api-docs.mdc).
  • Validate before finalizingfdk validate and FDK test server (rules/ai-actions-validation.mdc).
  • Toolchain order — same gate as ../fw-app-dev/SKILL.md (*Manifest + toolchain gate*): run fw-setup when Node 24.x + FDK 10.x is missing; run /fdk-migrate (or manual 2.x -> 3.0) before validate on legacy apps; on engines mismatch, align manifest.json engines upward instead of downgrading to FDK 9 / Node 18.

App Architecture

AI actions apps do not need the app folder. Use only:

fw-ai-actions-app/
├── actions.json
├── server/server.js
├── server/test_data/actionName.json
├── config/requests.json
├── config/iparams.json
└── manifest.json

Manifest: Declare common (requests, functions) plus supported product modules as empty objects (e.g. "support_ticket": {}). Do not strip module keys. Engines: "node": "24.11.0", "fdk": "10.0.0" unless the project specifies otherwise (rules/ai-actions-platform.mdc).


Modules / supported-modules source (when provided by the project)

The project may supply a CSV/spec listing Modules Supported per app. Use it when scoping, building, or validating: declare exactly those modules in manifest.json (no location / url / icon for AI-only apps). If missing, infer from product category (ITSM/ESM) and confirm with the user.


Instructions

  1. Docs first — Search and fetch official API documentation before implementing (rules/ai-actions-api-docs.mdc).
  2. Schemas — Flat parameters, pragmatic response (rules/ai-actions-schemas.mdc, references/ai-actions-quick-reference.md).
  3. ServerrenderData, $request.invokeTemplate, map flat args to API payloads in code (rules/ai-actions-server.mdc).
  4. Configrequests.json, iparams.json, manifest (rules/ai-actions-requests.mdc, rules/ai-actions-platform.mdc).
  5. Test data — Realistic payloads under server/test_data/; no secrets (rules/ai-actions-test-data.mdc).
  6. Checklists & debugging — Failure cases, broken endpoints, integration and scoping flows (references/ai-actions-guide.md).
  7. Concepts — Short primer (references/ai-actions-core.md).

Output Format

Deliverables follow this layout:

app-root/
├── actions.json
├── manifest.json
├── server/server.js
├── server/test_data/<functionName>.json
├── config/requests.json
├── config/iparams.json
└── README.md   (when documenting the app — `rules/ai-actions-readme.mdc`)

Flat request excerpt:

"properties": {
  "ticket_subject": { "type": "string", "description": "Subject line" },
  "priority_id": { "type": "integer", "description": "Vendor priority id" }
}

Handler contract: exports keys match actions.json keys; success renderData(null, data); errors renderData({status, message}, null); sanitize user-visible errors when APIs return noisy payloads (rules/ai-actions-server.mdc).


Example

Prompt: “Add escalateTicket for our ITSM API with ticket_id and team_id.”

Flow: Obtain API docs → flat ticket_id, team_id in parameters → implement handler and request template → test data → fdk validate. Do not nest request parameters to mimic vendor JSON.


Skeleton templates

  • scripts/ai-actions-skeleton/ — minimal starter (actions, config, server stub).
  • assets/templates/ai-actions-skeleton/ — fuller example (e.g. manifest, sample actions).

When to use / not use

Use for AI Actions, SMI, templates, integrations, validation, and scoping.

Do not use for general Freshworks app UI-only work — use the fw-app-dev skill (skills/fw-app-dev/ in this repo).


References

LocationRole
rules/ai-actions-*.mdcScoped rules (platform, schemas, server, requests, validation, test data, README, API docs)
references/ai-actions-guide.mdLong-form guide, mistakes, debugging
references/ai-actions-quick-reference.mdOne-page patterns
references/ai-actions-core.mdCore constraints (also glob-scoped)

Summary

Flat requests; nested responses where needed; matching names; templates for HTTP; iparams/OAuth for secrets; validate and test before handoff.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.27%
按下载量换算23

Claude

32.23%
按下载量换算20

Cursor

18.62%
按下载量换算12

Gemini CLI

10.07%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills