← 返回 Skills 市场
lt8899789

Chou Fei

作者 无为上人 · GitHub ↗ · v1.0.16 · MIT-0
cross-platform ✓ 安全检测通过
286
总下载
0
收藏
0
当前安装
14
版本数
在 OpenClaw 中安装
/install chou-fei
功能描述
Manage external resource fetching, extract valuable information, and allocate computing power based on task priority and load.
使用说明 (SKILL.md)

\r \r

臭肺·吐纳魄 (Chou Fei - Respiration)\r

\r

七魄之七·臭肺\r 职掌:资源获取、信息摄取、算力调度\r \r ---\r \r

技能简介\r

\r 「臭肺·吐纳魄」是贫道的资源摄取模块,职掌资源获取与信息代谢。\r \r 核心职责:\r

  • 获取外部资源\r
  • 摄取有效信息\r
  • 调度算力分配\r \r ---\r \r

技能ID\r

\r

chou-fei\r
```\r
\r
---\r
\r
## 能力清单\r
\r
### 1. 资源获取 (fetch)\r
\r
获取外部资源。\r
\r
**输入**:`resource` (object) - 资源描述\r
```yaml\r
resource:\r
  type: url|file|api|data\r
  location: 资源位置\r
  format: 期望格式\r
```\r
\r
**输出**:\r
```yaml\r
fetched:\r
  content: 获取的内容\r
  size: 大小(bytes)\r
  format: 实际格式\r
  cached: 是否缓存\r
```\r
\r
---\r
\r
### 2. 信息摄取 (absorb)\r
\r
从内容中提取有价值信息。\r
\r
**输入**:`content` (string) - 内容文本\r
\r
**输出**:\r
```yaml\r
absorbed:\r
  summary: 内容摘要\r
  keyPoints: 关键点列表\r
  entities: 识别的实体\r
  relevance: 相关性评分\r
```\r
\r
---\r
\r
### 3. 算力调度 (allocate)\r
\r
调度算力资源。\r
\r
**输入**:`request` (object) - 算力请求\r
```yaml\r
request:\r
  task: 任务类型\r
  priority: 优先级\r
  estimatedLoad: 预估负载\r
```\r
\r
**输出**:\r
```yaml\r
allocation:\r
  allocated: 分配的算力\r
  queuePosition: 队列位置\r
  estimatedTime: 预估时间\r
```\r
\r
---\r
\r
---\r
\r
## 聚合技能\r
\r
本魄作为吐纳中枢,资源摄取与信息代谢:\r
\r
| 现有技能 | 调用方式 | 整合说明 |\r
|---------|---------|---------|\r
| `weather` | 调用 | 天气资源获取 |\r
| `bodhi-three-hun-and-seven-po` | 元技能 | 三魂七魄根基,协调各魄 |\r
\r
---\r
\r
## 魂魄注解\r
\r
臭肺吐纳,新陈代谢——资源摄取,能量流转。\r
安全使用建议
This skill appears coherent and doesn't ask for credentials or install remote code, but note: its 'fetch' function currently simulates network fetches rather than performing real HTTP requests—if you expect actual remote fetching, review/modify the code before relying on it. Also be aware the allocate function reads system CPU/load information (os.cpus, os.loadavg) to make decisions — that's normal for compute scheduling but does expose basic system load to the skill. If you allow autonomous invocation, the agent could call these functions without prompting; enable only if you trust the skill's behavior and runtime environment.
功能分析
Type: OpenClaw Skill Name: chou-fei Version: 1.0.16 The skill bundle provides simulated resource acquisition, text summarization, and compute scheduling capabilities using a Taoist-themed 'Seven Souls' framework. The implementation in scripts/index.js and scripts/streaming-task.js is functional and contains no evidence of data exfiltration, malicious execution, or harmful prompt injection; it primarily uses built-in Node.js modules for basic text processing and system load monitoring.
能力评估
Purpose & Capability
Name/description (resource fetching, info extraction, compute allocation) match the provided code: fetch, absorb, allocate functions and streaming helpers. However, the fetch implementation is simulated (returns a placeholder string) rather than performing real HTTP GETs — so the capability claimed (real external resource fetching) is not implemented here. The skill also references integrating other skills (weather, bodhi-three-hun-and-seven-po), which is plausible for an aggregator.
Instruction Scope
SKILL.md instructions confine behavior to fetching resources, extracting summaries/entities, and allocating compute. The instructions do not ask the agent to read unrelated system files, secrets, or transmit data to unexpected endpoints. The code likewise does not access environment variables, network endpoints, or arbitrary filesystem paths.
Install Mechanism
No install spec is provided (instruction-only install). The bundle includes JS files that will be executed, but there is no external download or install-from-URL; no archives or third-party package installs are requested. This is low-risk from an install perspective.
Credentials
The skill requests no environment variables, credentials, or config paths. It reads benign system info (os.cpus(), os.loadavg()) to simulate allocation decisions, which is proportional to its 'allocate' function. No secrets or unrelated credentials are requested.
Persistence & Privilege
always is false and the skill does not attempt to modify other skills, system settings, or persist tokens. It runs as normal user code and does not demand elevated or permanent privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install chou-fei
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /chou-fei 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.16
- Version updated to 1.0.16 in SKILL.md. - No other content changes detected.
v1.0.15
- Bumped version to 1.0.15 in SKILL.md. - No functional or descriptive content changes.
v1.0.14
- Version updated to 1.0.14 in SKILL.md. - No changes to skill content or capabilities.
v1.0.13
- Bumped version to 1.0.13 in SKILL.md. - No other content or functional changes.
v1.0.12
- Updated skill version to 1.0.12 in metadata. - Removed unused metadata fields from SKILL.md for simplicity. - No functional changes to the skill itself.
v2.0.1
Version 2.0.1 makes major metadata improvements for chou-fei. - Added structured metadata fields: skill_id, name, description, category, tags, platforms, author, estimated_tokens, and load_strategy. - Updated version from 1.0.11 to 2.0.1. - No changes to core functionality or capability descriptions. - Enhanced maintainability and platform integration through improved SKILL.md structure.
v1.0.11
- Bumped version to 1.0.11 in SKILL.md. - No functional or content changes; documentation version update only.
v1.0.10
- Update skill version to 1.0.10 in documentation. - No functional or content changes; version number increment only.
v1.0.9
- Version updated to 1.0.9 in SKILL.md. - No other content or functional changes detected.
v1.0.8
- Version updated to 1.0.8 in SKILL.md. - No other content changes detected.
v1.0.7
- Version updated to 1.0.7 in SKILL.md. - No functional or descriptive changes detected; content remains the same except for the version number.
v1.0.6
- Version updated to 1.0.6 in SKILL.md. - No functional or structural changes; only the version number was incremented.
v1.0.5
- Bumped version to 1.0.5 in SKILL.md. - No other changes detected.
v1.0.4
Chou Fei 1.0.4 - Added full SKILL.md documentation, detailing all major features. - Outlines three main capabilities: resource fetching, information absorption, and computation allocation. - Provides input and output schemas for each capability. - Describes integration with related skills for resource and information management. - Includes context and philosophical annotations for the skill’s role.
元数据
Slug chou-fei
版本 1.0.16
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 14
常见问题

Chou Fei 是什么?

Manage external resource fetching, extract valuable information, and allocate computing power based on task priority and load. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 286 次。

如何安装 Chou Fei?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install chou-fei」即可一键安装,无需额外配置。

Chou Fei 是免费的吗?

是的,Chou Fei 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Chou Fei 支持哪些平台?

Chou Fei 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Chou Fei?

由 无为上人(@lt8899789)开发并维护,当前版本 v1.0.16。

💬 留言讨论