一键导入
plugin-discovery
Internal FastGPT community plugin intake helper. Detects candidate plugin metadata and prepares registry intake notes for this repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Internal FastGPT community plugin intake helper. Detects candidate plugin metadata and prepares registry intake notes for this repository.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | plugin-discovery |
| description | Internal FastGPT community plugin intake helper. Detects candidate plugin metadata and prepares registry intake notes for this repository. |
Use this skill for internal plugin onboarding only. It is not a public marketplace UI and it does not approve releases by itself.
Given a candidate plugin repository or local path, produce a reviewable intake bundle:
plugins.json entry matching schemas/registry.tsgit submodule add commandpnpm run plugin -- add --from packages/tools/<pluginId> commandpass, warn, or failpluginId.The registry patch must match the runtime schema in schemas/registry.ts. Do not copy field rules into this skill; read the schema before generating an entry.
Example:
{
"pluginId": "weatherTool",
"version": "0.1.0",
"type": "tool",
"source": "https://github.com/example/weatherTool",
"commit": "abcdef1234567890",
"submodule": "packages/tools/weatherTool",
"path": ".",
"status": "pending",
"support": "community"
}
Do not include a review field in registry entries. Review findings should be posted as GitHub PR comments. If publish automation needs a machine-readable verdict, pass it directly with --review-verdict and --review-summary. The JSON shape in schemas/review.ts is only for internal automation handoff:
{
"pluginId": "weatherTool",
"version": "0.1.0",
"verdict": "pass",
"summary": "No blocking policy risks found.",
"generatedAt": "2026-06-05T00:00:00.000Z"
}
Mark the intake as blocked if any of these are found:
package.jsonindex.tschild_processpass: eligible for autonomous publish after deterministic gates passwarn: do not publish; place in periodic review queuefail: do not publish; require remediation## Plugin Review: <pluginId>@<version>
Source: <repo>
Commit: <sha>
Path: <path>
Verdict: pass | warn | fail
## Detected Plugin Shape
- package:
- entry:
- manifest:
## Hard Gates
- registry:
- source layout:
- build/check/pack:
- policy scan:
## AI Policy Review
- license:
- secrets:
- network:
- filesystem/process:
- dependency risk:
## GitHub Comment
- target PR:
- top-level comment posted:
- inline comments posted:
## Publish Evidence
- package:
- sha256:
- receipt:
## Reviewer Checklist
- [ ] Source repo and commit match registry
- [ ] Plugin repository has its own `packageManager` and `pnpm-lock.yaml`
- [ ] Plugin dependencies do not use `catalog:` or `workspace:`
- [ ] `.pkg` was rebuilt from pinned source
- [ ] Findings were posted to the GitHub PR when a PR exists
- [ ] Publish event contains package checksum and marketplace release id after publish
- [ ] Revoke action can mark the registry entry revoked and write a revoke event
Generate a human-readable daily FastGPT community plugin summary from committed publish and revoke events.
Review a FastGPT community plugin candidate and post a structured publishability verdict to the pull request.
新手友好的 FastGPT 插件开发向导。Use when the user wants help installing Git/GitHub CLI/Node/pnpm, clarifying plugin requirements, choosing FastGPT plugin type (tool or tool-suite), scaffolding and implementing a plugin, testing/debugging with @fastgpt-plugin/cli, packaging, publishing to GitHub, or submitting a pull request to a FastGPT plugin repository/community registry.