Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

cortex-skills-loop皮层技能循环

Agent Skill

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

总安装

685

周安装

28

GitHub Stars

15

下载量

222
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/nickcrew/claude-ctx-plugin --skill cortex-skills-loop

简介

cortex-skills-loop 建立 AI 驱动的技能推荐机制,根据上下文变化提供个性化能力补充建议。

  • 适用于多技能协作环境,当检测到文件类型或技术栈切换时自动触发推荐。
  • 通过用户反馈闭环持续优化推荐质量,支持对技能使用效果进行评分与标记。
  • 推荐结果仅供参考,实际加载前应核对技能描述与当前任务匹配度,避免资源浪费。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cortex Skills Loop

Overview

The cortex CLI includes an AI-powered recommendation engine that learns from usage patterns. This skill establishes the workflow for participating in that learning loop: get recommendations when context shifts, provide feedback on recommendation quality, and rate skills after use. Each interaction improves future recommendations.

When to Engage

Signals That Trigger Recommendations

Run cortex skills recommend when any of these mismatch signals appear:

  • File pattern shiftgit diff or the working set includes file types not covered by active skills (e.g., .tf Terraform files appear but no infrastructure skill is active, or **/auth/** paths get touched without security skills loaded)
  • Agent activation change — a new agent gets activated that likely has complementary skills not yet loaded (the recommender maps agents to skill sets internally)
  • Explicit domain pivot — the user switches focus to a different domain ("now let's handle the database migrations") and the current skill set is oriented elsewhere
  • Skill gap felt — a task requires domain knowledge that no active skill covers, or an active skill is providing no value to the current work

Signals That Trigger Rating/Feedback

  • Task completion — a skill was active during work that just finished successfully
  • Recommendation acted on — a recommendation was recently followed or dismissed
  • Negative experience — a skill actively misled or produced unhelpful guidance

When Not to Engage

Do not run recommendations on every session start or for routine tasks where the active skill set is clearly appropriate. The loop adds value through selective, signal-driven use.

Workflow

1. Recommend — Surface Relevant Skills

When a context change is detected, run:

cortex skills recommend

This analyzes the current git state, active agents, and historical patterns to suggest skills grouped by confidence level:

  • High confidence (>=0.8): Auto-activate candidates — consider activating immediately
  • Medium confidence (0.6-0.8): Worth reviewing with the user
  • Low confidence (<0.6): Informational only

To check what is currently active before acting on recommendations:

cortex status

For full option details: cortex skills recommend --help

2. Feedback — Improve Recommendation Quality

After a recommendation has been acted on (activated or dismissed), record whether it was useful:

cortex skills feedback <skill-name> helpful --comment "Caught auth vulnerability early"
cortex skills feedback <skill-name> not-helpful --comment "Not relevant to this API work"

Positive feedback with context available teaches the recommender to associate the current project context with that skill for future sessions. Always provide a --comment when possible to enrich the learning signal.

For full option details: cortex skills feedback --help

3. Rate — Record Skill Effectiveness

After a task completes and a skill was active during the work, rate its contribution:

cortex skills rate <skill-name> --stars <1-5> --review "Description of experience"

Additional flags to enrich the signal:

  • --helpful / --not-helpful — binary usefulness indicator
  • --succeeded / --failed — whether the task the skill supported succeeded

Ratings feed back into the recommendation engine. Highly rated skills get prioritized in future suggestions; low-rated skills get demoted.

To view existing ratings before adding one: cortex skills ratings <skill-name>

To discover top-performing skills: cortex skills top-rated

For full option details: cortex skills rate --help

Closing the Loop

The recommend-feedback-rate cycle is cumulative. Each interaction updates the SQLite-backed learning database, improving four recommendation strategies:

  1. Semantic similarity — embeds successful session contexts for future matching
  2. Rule-based — matches file patterns to skill suggestions
  3. Agent-based — maps active agents to complementary skills
  4. Pattern-based — promotes skills with high historical success rates

When multiple strategies converge on the same skill, confidence gets boosted. Consistent feedback and ratings are what make this convergence happen over time.

Quick Reference

ActionCommand
Get recommendationscortex skills recommend
Check current statuscortex status
Give positive feedbackcortex skills feedback <skill> helpful --comment "..."
Give negative feedbackcortex skills feedback <skill> not-helpful --comment "..."
Rate a skill (1-5 stars)cortex skills rate <skill> --stars N --review "..."
View skill ratingscortex skills ratings <skill>
See top-rated skillscortex skills top-rated
View usage analyticscortex skills analytics

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.26%
按下载量换算83

Claude

28.27%
按下载量换算63

Cursor

19.36%
按下载量换算43

Gemini CLI

8.24%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills