Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

skill-cortex-ank技能 cortex ANK

Agent Skill

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

总安装

11,005

周安装

454

GitHub Stars

2

下载量

3,596
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skill-cortex-ank

简介

skill-cortex-ank 提供基于 ANK 体系的能力扩展与检索支持。

  • 适合在 OpenClaw 中需要按关键词快速定位候选技能时使用。
  • 支持从指定来源动态加载技能,增强代理的适应性。
  • 使用前请核实权限范围,避免触发未授权的外部调用。
  • 注意其依赖网络连接,建议在稳定环境下部署。skill-cortex-ank 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
skill-cortex
description
>
version
1.0.0
metadata
openclaw
requires
bins

Skill Cortex

Triggers when installed Skills cannot complete the current task. If you can handle it yourself, just do it — do not trigger this flow.

Cortex data file: ~/.openclaw/skill-cortex/cortex.json (schema in docs/DESIGN.md).


Phase 1: Perception

  1. Read cortex.json (if missing or corrupt, skip to step 3).
  2. Semantically match the user's task description against sensory.patterns signals (no exact match required — use your own judgment on intent alignment). On hit, look up the corresponding region in motor, sort candidates by effective weight (effective_weight = weight * max(0.3, 1 - days_since_last_used / 180)), filter out blacklisted and effective_weight < 0.3 entries, then proceed to Phase 2.
  3. On miss, search ClawHub: clawhub search "<3-5 English keywords>". Read summaries only, pick up to 3 candidates. If fewer than 2 relevant results, supplement with a GitHub search (mark as unreviewed source).

Phase 2: Validation & Authorization

Reflex Fast Path

The top candidate may enter reflex mode when ALL of the following hold:

  • reflex: true AND effective_weight >= 0.90 AND consecutive successes >= 5
  • No write side effects (side_effects contains no write:/delete:/shell: prefix)
  • Version unchanged (slug + version match the stored record)

Reflex mode skips only the execution plan confirmation. Installation still requires user notification:

⚡ Skill Cortex reflex: todoist-cli v1.2.0 (96% success rate)
   Task: query today's todos (read-only) | Will install and execute. Say cancel to abort.

Version change automatically downgrades to standard mode.

Standard Mode

Present candidates to the user (name, description, stars, downloads, source, security scan status, history). Wait for explicit approval before installing.

If prefrontal.lessons contain experiences matching the current region, retain them for use in Phase 3.


Phase 3: Execution

3.1 Install

clawhub install <slug>

On failure, auto-switch to the next candidate. Max 2 switches, then stop and report.

3.2 Execution Plan

Read the installed Skill's SKILL.md and present to the user:

  • Step summary
  • Side-effect severity: 🟢 read-only 🟡 write 🔴 destructive 🔑 sensitive credentials ⚙️ shell commands
  • Relevant prefrontal lessons (if any) — e.g., proactively check for a dependency known to be commonly missing

Reflex mode skips this step. Standard mode waits for user confirmation.

3.3 Execute

Follow the Skill's instructions to complete the task.

3.4 Failure Recovery

TypeHandling
dependency_missingShow the user what needs to be installed, proceed only after confirmation
api_errorWait 3 seconds, retry once
auth_errorPrompt user to check credentials, do not auto-retry
task_mismatchUninstall, suggest switching to next candidate
runtime_errorUninstall, suggest switching to next candidate

Switching candidates requires user consent. After all candidates fail, provide a full report with each failure reason and suggested remediation.


Phase 4: Learning & Cleanup

Execute regardless of success or failure.

4.1 Update Motor

Success: new_weight = old + (1 - old) * 0.15 * (1 / (1 + successes_in_last_7d)) Failure: new_weight = old * decay (task_mismatch: 0.4 / runtime: 0.6 / auth: 0.8 / dependency: 0.85 / api: 0.9) New Skill initial weight = 0.5. Record skill_md_chars (SKILL.md character count) and version. Create region if it doesn't exist. Update last_used.

4.2 Update Sensory

When this task was resolved via search (sensory miss), extract 2–4 signal words from the task description and merge into the corresponding region's pattern. Merge into existing patterns; do not create duplicates.

Entity Filtering (mandatory): Before writing signal words, strip all concrete entities — personal names, company names, place names, dates, numeric values, filenames, URLs, emails, etc. Retain only verbs and abstract nouns. Example: user says "Look up Alice's Q3 sales report" → signals should be ["query", "sales", "report"], NOT ["Alice", "Q3"].

4.3 Update Prefrontal

Record structured lessons only in the following cases (no free-form):

// Type 1: Same failure type occurs 2+ times → dependency pre-check
{ "type": "dependency_warning", "region": "...", "key": "imagemagick", "action": "check_bin_before_install", "confidence": 0.6 }
// Type 2: Skill description does not match actual capability
{ "type": "skill_quality_warning", "slug": "xxx", "detail": "does not support batch ops", "confidence": 0.6 }
// Type 3: User environment is typically ready
{ "type": "env_ready", "region": "...", "key": "TODOIST_API_KEY", "confidence": 0.6 }

Confidence +0.1 each time validated (cap 1.0). Remove when < 0.3 during pruning.

4.4 Reflex Promotion

Set reflex: true when ALL conditions are met: success >= 5, weight >= 0.90, no write side effects. Immediately reset reflex: false on any failure or version change.

4.5 Cleanup

Default: uninstall. clawhub uninstall <slug>

Suggest retention (when ALL met): success >= 3, weight >= 0.8, skill_md_chars < 8000. Approved → keep installed, remove record from motor (transfers to OpenClaw native management). Declined → uninstall normally.

4.6 Pruning

  • Motor: max 5 candidates per region / max 80 regions / remove effective_weight < 0.1
  • Sensory: remove pattern when its region is pruned / max 10 signals per pattern
  • Prefrontal: max 30 lessons / remove confidence < 0.3 / remove if linked region is pruned

Boundary Rules

  1. Never interfere with long-term Skills.
  2. Installation requires user confirmation (including reflex mode).
  3. System dependency installation requires separate confirmation.
  4. Write operations never enter reflex. Reflex locks version; version change auto-downgrades.
  5. Max 2 candidate switches.
  6. On cortex file corruption, degrade to direct ClawHub search; rebuild after task.
  7. Read latest cortex file before writing; merge changes, never overwrite.
  8. Single-session design; cortex data may be inconsistent under concurrent sessions.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

83.81%
按下载量换算3,014

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install skill-cortex-ank 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills