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

study-and-port学习和港口

Agent Skill

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

总安装

3,562

周安装

153

GitHub Stars

公开资料未说明

下载量

1,248
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:study-and-port(学习和港口)
来源仓库:https://github.com/chenjin113/study-and-port
安装命令:
openclaw skills install study-and-port
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install study-and-port

简介

研究新兴 AI 框架并移植其核心功能至 OpenClaw 技能生态。

  • 适用于 OpenClaw 中探索前沿技术可行性并进行二次开发时。
  • 通过 clawhub 安装,建议结合来源仓库了解评估维度和实施流程。
  • 使用前需确认是否允许访问外部论文库或代码仓库。study-and-port 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 注意评估是否会触发大规模代码扫描或依赖下载操作。

SKILL.md

name
study-and-port
description
Research new AI frameworks or technologies, extract their best features, evaluate feasibility, and implement as OpenClaw skills. Triggered when: (1) user mentions a new framework, (2) discovers features other frameworks have that OpenClaw lacks, (3) wants to learn from other AI assistants.
metadata
requires
bins
[node]
permissions

Safety & Boundaries

  • Always ask user before creating new skills or scripts
  • Never auto-execute created scripts without confirmation
  • Research only — do NOT implement features that require core OpenClaw changes
  • Report findings to user, let them decide what to keep

Study and Port — Research &移植框架优点

_"Don't just use other AI frameworks — learn from them."_

When you discover an AI framework or tool with features worth learning, execute this skill.


Trigger Conditions

  • User mentions a new AI framework or tool
  • Discover features in other frameworks that OpenClaw doesn't have
  • Want to learn from other AI assistants' strengths

Workflow

Step 1 — Quick Overview (10 min)

Search endpoint: Use MiniMax web search (configured in TOOLS.md)

Use search to understand:

Template A (General Framework):

"[framework name] features capabilities 2026"
"[framework name] vs OpenAI agent differences"
"[framework name] Hermes Agent comparison"

Template B (AI Coding Assistants):

"[framework name] features capabilities 2026"
"[framework name] self-improving memory workflow"

Template C (Chinese Frameworks):

"[framework name] 特点 功能 优势"
"[framework name] 和 OpenClaw 对比"

Collect:

  • Framework name and version
  • Core features (3-5)
  • Design philosophy
  • How it differs from OpenClaw

Step 2 — Deep Dive (as needed)

For each core feature:

"[framework name]" "[specific feature]" "how it works"
"[framework name]" "implementation" "architecture"

Extract the 3-5 most valuable learnings.

Step 3 — Feasibility Evaluation

For each feature, answer:

Question✅ Yes❌ No
Can this be implemented as SKILL.md?Mark "portable"Mark "requires core change"
Does it need OpenClaw source changes?Mark "requires core"Mark "portable"
Does it need external APIs?Check API availabilityMark "API dependent"
Would users benefit from this?KeepMark "low value"

Portability Rating:

  • 🌟 Portable (skill) — implementable as SKILL.md ± scripts
  • 🔧 Partially Portable — core part doable, limitations exist
  • 🏗️ Requires Core Change — needs OpenClaw source modification
  • Wait & Watch — tech not mature enough

Step 4 — Create Skill (if portable)

User confirmation required: Before creating any new skill or script, ALWAYS ask user:

  • "这个框架的 [功能] 值得移植,我要创建新 skill,可以吗?"

For each "portable" feature:

  1. Write SKILL.md:

- Clear trigger conditions - Detailed execution steps - Usage boundaries - Script location if needed

  1. Write Scripts (if needed):

- Scripts must be independently runnable - Must handle errors (network failure, file not found, etc.) - Node.js runtime must be available (declare in metadata)

  1. Validate:
   ls ~/.openclaw/workspace/skills/[skill-name]/
   node ~/.openclaw/workspace/skills/[skill-name]/scripts/[script].js --help

Permissions required:

  • Write access to ~/.openclaw/workspace/skills/ (for new skill files)
  • Write access to ~/self-improving/ (for log files)
  • Node.js runtime (pre-installed with OpenClaw)

Step 5 — Log to Procedural Memory

Append to ~/self-improving/procedural-memory-log.md:

## YYYY-MM-DD

### [Framework] Research
- **Research subject**: [framework name]
- **Features extracted**: [list portable features]
- **Deemed non-portable**: [list with reasons]
- **Skill created**: [skill-name]
- **Portability rating**: 🌟 Fully portable / 🔧 Partially / 🏗️ Core required

Step 6 — Report to User

Tell user:

  • What interesting features were found
  • Which are portable, which aren't
  • What skill was created

Multi-Session Research Tracking

If research spans multiple sessions:

Create ~/self-improving/study-progress.md:

# [Framework] Research Progress

## Started: YYYY-MM-DD
## Status: 🔄 In Progress / ✅ Complete

## Completed
- [ ] Quick overview
- [ ] Core feature analysis

## Pending
- [ ] Feasibility evaluation
- [ ] Skill creation

## Key Findings (update anytime)
-

Read this file when resuming research.


Decision Tree: Should I Port?

Discover new framework
    │
    ▼
Does OpenClaw already have this feature?
    │
    ├─ Yes → Skip, not worth researching
    │
    └─ No or Not Sure → Continue
              │
              ▼
        Would users benefit from this?
              │
              ├─ Not sure → Ask user: "Should I research [framework]?"
              │
              └─ Yes → Continue
                        │
                        ▼
                  Can it be implemented as a skill?
                        │
                        ├─ Yes → Create skill
                        │
                        ├─ Partial → Create core part, note limitations
                        │
                        └─ No (requires core change) → Log to future features

References

  • Procedural Memory System: ../procedural-memory/SKILL.md
  • Skill Creator Guide: ../skill-creator/SKILL.md
  • Self-Improving Memory: ~/self-improving/memory.md

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

82.84%
按下载量换算1,034

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills