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

upgradeupgrade 搜索

Agent Skill

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

总安装

636

周安装

26

GitHub Stars

3,286

下载量

204
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/agenticnotetaking/arscontexta --skill upgrade

简介

提供笔记系统与技能升级指引,支持 reweave、rethink 与 verify 等进阶处理动词。

  • 适用于 backward-pass 回溯、元认知调整与主题图(MOC)更新等维护场景。
  • 依赖 ops/derivation-manifest.md 配置动词命名与 topic_map 引用规则。
  • 使用前应确认 ops/config.yaml 存在且 processing depth 设置合理。
  • upgrade 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Runtime Configuration (Step 0 — before any processing)

Read these files to configure domain-specific behavior:

  1. ops/derivation-manifest.md — vocabulary mapping, platform hints

- Use vocabulary.notes for the notes folder name - Use vocabulary.note / vocabulary.note_plural for note type references - Use vocabulary.reduce for the extraction verb - Use vocabulary.reflect for the connection-finding verb - Use vocabulary.reweave for the backward-pass verb - Use vocabulary.verify for the verification verb - Use vocabulary.rethink for the meta-cognitive verb - Use vocabulary.topic_map for MOC references

  1. ops/config.yaml — processing depth, domain context
  2. ops/derivation.md — derivation state and engine version

If these files don't exist, use universal defaults.

EXECUTE NOW

Target: $ARGUMENTS

Parse immediately:

  • If target contains a specific skill name (e.g., "upgrade reduce"): check only that skill
  • If target contains "--all": check all generated skills
  • If target is empty: check all generated skills (same as --all)

START NOW. Reference below defines the upgrade process.


Why Consultation, Not Hashing

Skills do not upgrade through hash comparison against a generation manifest. Hash comparison answers a narrow question: "Has this file changed?" Meta-skill consultation answers the right question: "Is this skill's approach still the best approach given what we know?"

A skill could be unchanged but outdated because the knowledge base has grown. Or a skill could be heavily edited by the user but already incorporate the latest thinking through a different path. Reasoning about methodology is more valuable than diffing bytes.


Two Upgrade Paths

Generated skills and meta-skills follow fundamentally different upgrade mechanisms:

CategorySkillsUpgrade Mechanism
Generated skills/{vocabulary.reduce}, /{vocabulary.reflect}, /{vocabulary.reweave}, /{vocabulary.verify}, /ralph, /next, /remember, /{vocabulary.rethink}, /stats, /graph, /tasks, /refactor, /learn, /recommend, /askRuntime consultation with knowledge graph
Meta-skills/setup, /architect, /health, /reseed, /add-domain, /help, /tutorial, /upgradePlugin release cycle — update the plugin itself

/upgrade evaluates generated skills. It cannot evaluate itself or other meta-skills — that is the plugin maintainers' responsibility.


Step 1: Inventory Current System

Gather the vault's current state:

  1. Read ops/derivation.md for:

- Original derivation state - Engine version that generated the system - Domain description and dimensional positions

  1. Read ops/generation-manifest.yaml (if exists) for:

- Skill versions and generation timestamps - Which plugin version generated each skill

  1. List all installed skills: # Find all skill directories with SKILL.md for dir in.claude/skills/*/; do skill=$(basename "$dir") version=$(grep '^version:' "$dir/SKILL.md" 2>/dev/null | head -1 | awk -F'"' '{print $2}') gen_from=$(grep '^generated_from:' "$dir/SKILL.md" 2>/dev/null | head -1 | awk -F'"' '{print $2}') echo "$skill v$version (from $gen_from)" done
  2. Read ops/config.yaml for current dimensional positions
  3. Check for user modifications: # Detect skills modified after generation for dir in.claude/skills/*/; do skill=$(basename "$dir") file="$dir/SKILL.md" [[! -f "$file"]] && continue # Check git status — modified files indicate user customization git_status=$(git status --porcelain "$file" 2>/dev/null) if [[-n "$git_status"]]; then echo "MODIFIED: $skill" fi done

Present inventory:

--=={ upgrade : inventory }==--

System: {domain description}
Engine: arscontexta-{version}
Skills: {count} installed ({modified_count} user-modified)

  Skill               Version  Generated From    Modified
  /{vocabulary.reduce}    1.0  arscontexta-v1.6  no
  /{vocabulary.reflect}   1.0  arscontexta-v1.6  yes
  ...

Step 2: Consult Knowledge Base

For each generated skill (or the specific skill if targeted), consult the plugin's bundled knowledge base to evaluate whether the skill's current approach reflects current best practices.

Knowledge Base Tiers

Read from the plugin's four content tiers:

TierPathWhat It Contains
Methodology graph${CLAUDE_PLUGIN_ROOT}/methodology/All content — filter by kind: field (research/guidance/example)
Reference docs${CLAUDE_PLUGIN_ROOT}/reference/WHAT — structured reference documents and dimension maps

Notes in methodology/ are differentiated by their kind: frontmatter field:

  • kind: research — WHY: principles and cognitive science grounding (213 claims)
  • kind: guidance — HOW: operational procedures and best practices (9 docs)
  • kind: example — WHAT IT LOOKS LIKE: domain compositions (12 examples)
  • type: moc — Navigation: topic maps linking related notes (15 maps)

Consultation Process Per Skill

For each skill being evaluated:

  1. Read the current vault skill — understand its complete approach, quality gates, edge case handling
  2. Read relevant knowledge base documents:

- Research claims about this skill's domain (e.g., for /{vocabulary.reduce}: claims about extraction methodology) - Guidance docs about processing pipeline best practices - Reference docs about the skill's operational patterns

  1. Compare methodology, not text:

- Does the skill implement the quality gates the knowledge base recommends? - Does it handle edge cases the knowledge base identifies? - Does it use the discovery/search patterns the knowledge base recommends? - Has the knowledge base added new techniques since this skill was generated?

  1. Classify each finding: Classification Meaning Example Current Skill reflects knowledge base best practices No action needed Enhancement Knowledge base adds technique the skill lacks New quality gate, better search pattern Correction Knowledge base contradicts skill's approach Outdated methodology, known anti-pattern Extension Knowledge base covers scenario skill ignores New edge case, new domain pattern
  2. Check user modifications: If the skill has been modified by the user, read both the current (user-modified) version and evaluate whether:

- The user's changes already incorporate the improvement (skip it) - The user's changes are orthogonal to the improvement (can coexist) - The user's changes conflict with the improvement (flag for side-by-side review)


Step 3: Generate Upgrade Plan

For each skill with available improvements, create a structured proposal:

Skill: /{domain:skill-name}
Status: {current | enhancement | correction | extension}
User-modified: {yes | no}

Current approach:
  {2-3 sentences describing what the skill currently does}

Proposed improvement:
  {2-3 sentences describing what would change}

Research backing:
  {Specific claims from the knowledge base that support this change}
  - "{claim title}" — {how it applies}
  - "{claim title}" — {how it applies}

Impact: {what changes for the user's workflow}
Risk: low | medium | high
Reversible: yes (previous version archived to ops/skills-archive/)

Risk Assessment

Risk LevelCriteria
LowAdditive change (new quality gate, better logging). Existing behavior unchanged.
MediumModified behavior (different extraction strategy, changed search pattern). Output quality affected.
HighStructural change (different phase ordering, changed handoff format). Pipeline coordination affected.

Side-by-Side for User-Modified Skills

When a skill has been modified by the user AND an upgrade is available, show a side-by-side comparison:

Skill: /{domain:skill-name} (USER-MODIFIED)

Your version:                     Recommended:
  [relevant section excerpt]        [what knowledge base suggests]

Your customization:
  {description of what the user changed and why it appears intentional}

Options:
  (a) Keep your version unchanged
  (b) Apply upgrade, preserving your customizations
  (c) Apply upgrade, replacing your version (archived to ops/skills-archive/)

Option (b) requires the upgrade to be compatible with the user's changes. If they conflict, explain why and recommend (a) or (c).


Step 4: Present Plan

--=={ upgrade }==--

Plugin: arscontexta-{current_version}
Knowledge base: {count} research claims, {count} guidance docs
Skills checked: {count}

Upgrades available: {count}
  Enhancements: {n}  |  Corrections: {n}  |  Extensions: {n}

  1. /{domain:skill-name}
     Type: Enhancement
     Change: {one-line summary}
     Research: "{claim title}"
     Risk: low

  2. /{domain:skill-name} (USER-MODIFIED)
     Type: Correction
     Change: {one-line summary}
     Research: "{claim title}", "{claim title}"
     Risk: medium
     Note: Side-by-side comparison available

  ...

{If no upgrades:}
  All {count} skills reflect current best practices.
  No upgrades needed.

Apply all? Select specific upgrades (e.g., "1, 3")?
Or "show 2" for side-by-side detail on a specific skill.

Wait for user response. Do NOT proceed without explicit approval.


Step 5: Apply Approved Upgrades

For each approved upgrade:

5a. Archive Current Version

mkdir -p ops/skills-archive
SKILL_NAME="{skill-name}"
DATE=$(date +%Y-%m-%d)
cp ".claude/skills/${SKILL_NAME}/SKILL.md" \
   "ops/skills-archive/${SKILL_NAME}-${DATE}.md"

5b. Generate Updated Skill

  1. Read the skill's generation block from the plugin (if available)
  2. Apply the specific improvements identified in Step 2
  3. Preserve the user's vocabulary transformation from ops/derivation-manifest.md
  4. Preserve the user's dimensional positions from ops/config.yaml
  5. For user-modified skills with option (b): merge the user's customizations into the updated skill

5c. Update Version Tracking

Update the skill's frontmatter:

---
version: "{incremented}"
generated_from: "arscontexta-{current_plugin_version}"
---

5d. Update Generation Manifest

If ops/generation-manifest.yaml exists, update the entry for this skill:

skills:
  {skill-name}:
    version: "{new_version}"
    upgraded: "{ISO 8601 UTC}"
    upgrade_source: "knowledge-graph-consultation"
    changes: "{brief description of what changed}"

Step 6: Validate

After applying all approved upgrades:

  1. Kernel validation — run kernel checks to confirm structural invariants hold: # Verify skill files are valid for dir in.claude/skills/*/; do [[-f "$dir/SKILL.md"]] || echo "MISSING: $dir/SKILL.md" done
  2. Context file check — verify all skill references in the context file still resolve
  3. Vocabulary check — confirm upgraded skills use domain vocabulary consistently: # Spot-check that vocabulary markers were resolved grep -l '{vocabulary\.'.claude/skills/*/SKILL.md 2>/dev/null # Should return nothing — all markers should be resolved
  4. Pipeline compatibility — if pipeline skills were upgraded (/{vocabulary.reduce}, /{vocabulary.reflect}, /{vocabulary.reweave}, /{vocabulary.verify}), verify handoff format compatibility with /ralph

Final Report

--=={ upgrade complete }==--

Applied: {N} upgrades
Archived: {N} previous versions to ops/skills-archive/
Skipped: {N} (user-modified, kept as-is)

Changes:
  - /{skill}: {what changed} (Research: "{claim}")
  - /{skill}: {what changed} (Research: "{claim}")

Validation: {PASS | FAIL with details}

{If any validation failed:}
  WARNING: Validation issue detected.
  Previous versions available in ops/skills-archive/
  for manual rollback.

Note: Run /{vocabulary.verify} on a recent {vocabulary.note}
to confirm upgraded skills work correctly in practice.

INVARIANT

/upgrade never auto-implements. The upgrade plan is always presented to the user first. The user decides which upgrades to apply. This prevents the cognitive outsourcing failure mode where the system changes itself without human understanding.

All upgrades are advisory. The user owns the files.


Edge Cases

No improvements available: Report "All skills reflect current best practices. No upgrades needed." with the count of skills checked.

No generation manifest: Treat all skills as version 0 (unknown generation state). Compare methodology against current knowledge base. This is fine — consultation reasons about approach, not version numbers.

Skill has been user-modified: Present the side-by-side comparison. Offer three options: keep user version, merge upgrade with customizations, or replace (with archive). Never silently overwrite.

No ops/derivation-manifest.md: Use universal vocabulary for all output.

Plugin knowledge base unavailable: Report that knowledge base consultation requires the Ars Contexta plugin. Without the plugin's bundled methodology/ and reference/ directories, /upgrade cannot evaluate skills.

User rejects upgrades consistently: This is a signal, not an error. Note the pattern — it may indicate the knowledge base recommendations don't match this user's domain. Log to ops/observations/ if it persists across multiple /upgrade runs.

Correction conflicts with user modification: When the knowledge base identifies a correction (not just enhancement) but the user has modified the skill, explain the conflict clearly. The user may have modified the skill precisely because the original approach was wrong — their fix may already address the correction. Show both and let the user decide.

Multiple skills share a change: If the same knowledge base improvement applies to several skills (e.g., a new search pattern), present it as a single conceptual change affecting multiple skills rather than listing it redundantly per skill.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.2%
按下载量换算72

Claude

33.45%
按下载量换算68

Cursor

18.46%
按下载量换算38

Gemini CLI

8.97%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills