context-updater
Syncs your AI assistant's context and style guide with specific project files you provide.
Install
mkdir -p .claude/skills/context-updater && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/13766" && unzip -o skill.zip -d .claude/skills/context-updater && rm skill.zipInstalls to .claude/skills/context-updater
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Explicitly learns style nuances and updates user context from specified sources (Opt-in only).Key capabilities
- →Analyze text to extract style differences
- →Propose updates to `Style_Guidelines.md` based on new text
- →Analyze text to extract context differences
- →Propose updates to `Active_Context.md` based on new text
- →Backup target files before making changes
- →Require user approval before updating files
How it works
The skill analyzes a specified source file, compares it against existing style guidelines or active context, and then proposes updates to those files, requiring user approval before making any changes.
Inputs & outputs
When to use context-updater
- →Update coding style guides based on finalized code
- →Log project status into context files
- →Integrate new team documentation into AI memory
About this skill
Context Updater Skill
ユーザー(Ritsuto)の「文体(Style)」と「コンテキスト(Context)」を、ユーザーの指示に基づいて明示的に更新するスキルです。 勝手な学習は行わず、ユーザーが「これを手本にせよ」「これを記録せよ」と指定したファイルのみを解析対象とします。
Usage
Command
# 文体を学習して更新提案を受ける
python .agent/skills/context-updater/scripts/updater.py --mode style --source "path/to/ideal_article.md"
# 状況(コンテキスト)を更新提案を受ける
python .agent/skills/context-updater/scripts/updater.py --mode context --source "path/to/daily_log.md"
Modes
-
style:- 指定されたテキスト(完了稿など)を分析し、現在の
Style_Guidelines.mdとの差分を抽出します。 - 新しい「書き癖」や「好みの表現」が見つかった場合、ガイドラインへの追加・修正を提案します。
- 指定されたテキスト(完了稿など)を分析し、現在の
-
context:- 指定されたテキスト(日誌、メモなど)を分析し、
Active_Context.md(現状) と比較します。 - プロジェクトの完了、新しい関心事、実績などを抽出し、コンテキストの更新を提案します。
- 指定されたテキスト(日誌、メモなど)を分析し、
Workflow
- Backup: 対象ファイル(Style Guide or Active Context)のバックアップを一時作成します。
- Analyze: LLMがソースファイルと現状ファイルを比較分析します。
- Propose: 「以下の変更を行いますか?」とユーザーに確認を求めます(Console出力)。
- Update: ユーザーが承認した場合のみ、ファイルを上書き更新します。
When not to use it
- →When explicit user instruction to update style or context is not provided
- →When the source file is not intended for style or context learning
Limitations
- →Updates are only performed with explicit user instructions.
- →The skill only analyzes specified source files.
- →Changes are only applied after user approval.
How it compares
This skill explicitly learns and updates user context and style based on designated source files and user approval, providing a controlled and intentional learning mechanism unlike implicit or automatic context updates.
Compared to similar skills
context-updater side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| context-updater (this skill) | 0 | 4mo | Review | Beginner |
| compact | 4 | 6mo | Review | Beginner |
| skill-name | 0 | 8mo | Review | Advanced |
| gather | 0 | 3mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
compact
catlog22
Compact current session memory into structured text for session recovery. Supports custom descriptions and tagging.
skill-name
2025Emma
What it does + when to use (activation triggers).
gather
markxLee
|
agent-context-system
diegosouzapw
A persistent local-only memory system for AI coding agents. Two files, one idea — AGENTS.md (committed, shared) + .agents.local.md (gitignored, personal). Agents read both at session start, update the scratchpad at session end, and promote stable patterns over time. Works across Claude Code, Cursor,
planning-with-files
davila7
Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.
skill-builder
ruvnet
Create new Claude Code Skills with proper YAML frontmatter, progressive disclosure structure, and complete directory organization. Use when you need to build custom skills for specific workflows, generate skill templates, or understand the Claude Skills specification.