feiguazhitou-mcp-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +260 -0
- package/USER-GUIDE.md +139 -0
- package/dist/agent-guide.js +278 -0
- package/dist/agent-guide.js.map +1 -0
- package/dist/cli-error.js +30 -0
- package/dist/cli-error.js.map +1 -0
- package/dist/cli.js +952 -0
- package/dist/cli.js.map +1 -0
- package/dist/constants.js +42 -0
- package/dist/constants.js.map +1 -0
- package/dist/fs-utils.js +40 -0
- package/dist/fs-utils.js.map +1 -0
- package/dist/i18n.js +9 -0
- package/dist/i18n.js.map +1 -0
- package/dist/lease-lock.js +57 -0
- package/dist/lease-lock.js.map +1 -0
- package/dist/mcporter.js +249 -0
- package/dist/mcporter.js.map +1 -0
- package/dist/profile.js +262 -0
- package/dist/profile.js.map +1 -0
- package/dist/refresh.js +180 -0
- package/dist/refresh.js.map +1 -0
- package/dist/schema.js +39 -0
- package/dist/schema.js.map +1 -0
- package/dist/skills.js +139 -0
- package/dist/skills.js.map +1 -0
- package/dist/tool-catalog.js +126 -0
- package/dist/tool-catalog.js.map +1 -0
- package/package.json +42 -0
- package/skills/feiguazhitou-mcp-cli/SKILL.en.md +99 -0
- package/skills/feiguazhitou-mcp-cli/SKILL.md +130 -0
- package/skills/feiguazhitou-mcp-cli/skill.en.json +39 -0
- package/skills/feiguazhitou-mcp-cli/skill.json +39 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"protocol": "feiguazhitou-mcp-cli.skills/v1",
|
|
3
|
+
"protocolVersion": 1,
|
|
4
|
+
"skillVersion": "1.6.0",
|
|
5
|
+
"name": "feiguazhitou-mcp-cli",
|
|
6
|
+
"description": "使用动态生成的飞瓜智投 MCP CLI 完成安装、配置、刷新、诊断与安全调用。",
|
|
7
|
+
"argumentHint": "飞瓜智投客户端状态、端点或要排查的 CLI 问题",
|
|
8
|
+
"apply": "available",
|
|
9
|
+
"entrypoint": "SKILL.md",
|
|
10
|
+
"capabilities": [
|
|
11
|
+
"local-mcp-installation",
|
|
12
|
+
"streamable-http-configuration",
|
|
13
|
+
"runtime-schema-refresh",
|
|
14
|
+
"agent-cli-bootstrap",
|
|
15
|
+
"local-tool-catalog",
|
|
16
|
+
"canonical-tool-execution",
|
|
17
|
+
"runtime-approval-policy",
|
|
18
|
+
"credential-environment-setup",
|
|
19
|
+
"granular-cli-configuration",
|
|
20
|
+
"secure-header-stdin-configuration",
|
|
21
|
+
"agent-standard-mcp-config-interpretation",
|
|
22
|
+
"connection-troubleshooting",
|
|
23
|
+
"complex-raw-input",
|
|
24
|
+
"structured-failure-exit"
|
|
25
|
+
],
|
|
26
|
+
"requirements": {
|
|
27
|
+
"command": "feiguazhitou-mcp-cli",
|
|
28
|
+
"runtimeEnvironment": [],
|
|
29
|
+
"optionalRuntimeEnvironment": [
|
|
30
|
+
"FEIGUAZHITOU_CLI_MCP_URL",
|
|
31
|
+
"FEIGUAZHITOU_CLI_API_KEY",
|
|
32
|
+
"FEIGUAZHITOU_CLI_MCP_HEADERS",
|
|
33
|
+
"FEIGUAZHITOU_CLI_AUTO_APPROVE",
|
|
34
|
+
"FEIGUAZHITOU_CLI_MCP_TIMEOUT",
|
|
35
|
+
"FEIGUAZHITOU_CLI_DATA_DIR",
|
|
36
|
+
"FEIGUAZHITOU_CLI_LANG"
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
}
|