Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

fortify-fod强化食物

Agent Skill

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

总安装

264

周安装

11

GitHub Stars

公开资料未说明

下载量

88
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/crance/agent-skills-fortify --skill fortify-fod

简介

fortify-fod 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于特定领域(如食品强化)的信息检索与筛选需求。
  • 可通过 GitHub 仓库和 README 文档了解具体功能和使用方法。
  • 安装前应确认权限、维护状态及是否涉及网络或文件操作。
  • 建议结合原始文档验证其适用性和准确性。

SKILL.md

Fortify on Demand (FoD) Skill

Fortify on Demand (FoD) integration via Model Context Protocol (MCP).

When to Use This Skill

  • List applications and releases
  • Run security scans (SAST, SCA, DAST, MAST)
  • List security issues/vulnerabilities with filtering by severity, category, etc.
  • Count issues grouped by severity, category, etc.
  • Manage scan configurations and monitor scan progress
  • Generate and download security reports

Parameter Formats

Common formats and examples for key parameters:

ParameterFormatExample
--release"<App>[:<MicroService>]:<Release>" - case-sensitive, colon-separated (for *_list, *_scan_setup, *_scan_start, *_scan_get_config tools)"MyApp:MyRelease" or "MyApp:MyService:MyRelease"
qualifiedReleaseNameOrId"<App>[:<MicroService>]:<Release>" - positional param, case-sensitive, colon-separated (for release_get tool)"MyApp:MyRelease" or "MyApp:MyService:MyRelease"
appNameOrIdApplication name or ID - positional param, camelCase (for app_get tool)"MyApp" or "5011"
releaseQualifiedScanOrIdScan ID or qualified scan ID (for *_scan_get tools) - **Always use scan ID returned from *_scan_start or from *_scan_list**"12345" or "MyApp:MyRelease:12345"
--includeControl which issue statuses to include. By default, only visible issues returned. Comma-separated values: visible, fixed, suppressed"visible,fixed" or "suppressed"
--embedComma-separated values to include additional data. Valid values: allData, summary, details, recommendations, history, requestResponse, headers, parameters, traces"details,recommendations,history"
filePath to packaged zip or report output"package.zip", "report.pdf"

Authentication

All operations require authentication. Always verify session before any operation:

fcli_fod_session_list refresh-cache=true
  • If Expired = No → proceed
  • If expired → ask user to run locally: fcli fod session login --url <URL> --client-id <id> --client-secret <secret>
  • When running any FoD tool, if authentication error occurs, prompt user to re-authenticate locally.

Note: Reference workflows assume authentication has been verified.

Domain-Specific Guidance

Scan Workflows: Always Check Settings First

Before starting any scan, follow this sequence:

  1. Check existing scan configuration using *_scan_get_config command
  2. If not configured → Always ask user for required settings (language, build tool, framework, etc.)
  3. Never infer settings from workspace - build tools, language versions, and frameworks must be user-confirmed
  4. Package source code (SAST/SCA only) using fcli_fod_action_package
  5. Upload and start scan using appropriate *_scan_start command
  6. Monitor progress using *_scan_wait_for or periodic *_scan_get calls

Packaging Requirements

  • SAST scans: Package source code with fcli_fod_action_package
  • SCA/OSS scans: Package source code with fcli_fod_action_package (same as SAST)
  • DAST scans: No packaging needed - scans live running application
  • MAST scans: Upload mobile app binary (APK/IPA file)
  • Note: To enable Open Source Analysis in a SAST scan, use --oss flag in fcli_fod_sast_scan_setup

Filtering: Use query for Client-Side, --include for Status

  • Use query for client-side filtering by valid fields: category, foundInReleases, instanceId, location, severity, visibilityMarker
  • Use --include to control issue status visibility: visible (default), fixed, suppressed
  • --filters-param does NOT exist — do not use it; it will fail
  • Common examples: query {"severity": "Critical"}, query {"category": "SQL Injection"}, --include "suppressed"

Pagination

  • If pagination.hasMore = true → use pagination-offset for next page
  • Continue until pagination.hasMore = false or pagination.totalRecords reached

Error Recovery

ErrorRecovery
"Session expired"Refer to flow in Authentication section
"Release not found"Run release_list to discover correct names (see Finding Releases)
"Scan not configured"Ask user for scan settings and run *_scan_setup
"Package required"Run fcli_fod_action_package to package source code

Decision Tree: Choosing the Right Approach

User IntentAction
"run SAST scan" / "static analysis"Check config → ask settings → package → sast_scan_start (see SAST Workflow)
"run SCA scan" / "open source scan"Package → oss_scan_start (see SCA Workflow)
"run DAST scan" / "dynamic scan"DAST Automated onlysetup-website/api/workflow only support automated DAST types; manually-conducted Dynamic Assessments cannot be configured via MCP. Check config → ask settings → dast_scan_start (see DAST Workflow)
"list/show vulnerabilities"issue_list with query {"severity": "Critical"} + --embed details,recommendations — see List and Filter Vulnerabilities
"how many / count / summary"issue_list and aggregate results client-side — see Vulnerability Summary
"find release / which release"release_listrelease_get (see Finding Releases)
"show recommendations / how to fix"issue_list with --embed recommendations,history → prioritize Aviator (see Remediation)

Best Practices

DO:

  • ✅ Always verify authentication before operations
  • ✅ Check scan configuration before starting SAST scans
  • ✅ Always ask user for SAST scan settings (language, build tool, framework)
  • ✅ Use --oss flag in sast_scan_setup to enable Open Source Analysis in SAST scans
  • ✅ Use query for client-side filtering (valid fields: severity, category, location, instanceId, foundInReleases, visibilityMarker)
  • ✅ Use --include "suppressed" or --include "fixed" to retrieve non-default issue statuses
  • ✅ Use --embed to include details, recommendations, and history
  • ✅ Prioritize Fortify Aviator code fix suggestions in remediation
  • ✅ Use MCP tools over FCLI CLI directly
  • ✅ Monitor long-running scans with *_scan_wait_for

DO NOT:

  • ❌ Guess release names - always discover with release_list if uncertain
  • ❌ Infer SAST scan settings from workspace - always ask user
  • ❌ Skip SAST scan configuration validation
  • ❌ Prompt user for credentials - ask user to run fcli fod session login locally
  • ❌ Start scans without confirming settings with user
  • ❌ Package source code for DAST scans (not needed)
  • ❌ Use dast_scan_setup_* for non-automated (manually-conducted) DAST assessments — only DAST Automated assessment types are supported

References

Example Workflows

WorkflowUse When User Says...
Run SAST Scan"run SAST scan", "static analysis", "scan source code", "check for code vulnerabilities"
Run SCA Scan"run SCA scan", "open source scan", "check dependencies", "OSS vulnerabilities", "software composition analysis"
Run DAST Scan"run DAST scan", "dynamic scan", "test running application", "web application security test"
List and Filter Vulnerabilities"list vulnerabilities", "show security issues", "filter issues by severity", "critical vulnerabilities"
Find Release"find release", "which release", "list releases", "search for application"
Vulnerability Summary"count vulnerabilities", "show summary", "breakdown by severity", "how many issues"
Remediation Workflow"show recommendations", "how to fix", "remediation advice", "Aviator suggestions", "code fixes"

External Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35%
按下载量换算31

Claude

31.08%
按下载量换算27

Cursor

18.3%
按下载量换算16

Gemini CLI

8.3%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills