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

context-mate上下文配合

Agent Skill

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

总安装

3,387

周安装

144

GitHub Stars

750

下载量

1,187
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jezweb/claude-skills --skill context-mate

简介

context-mate 是与 Claude Code 自然流程协同的工具箱,提供项目扫描和工具推荐功能。

  • 自动检测会话追踪、实施阶段、项目简报和 AI 上下文文件的存在状态。
  • 根据项目结构推荐合适工具,忽略无关组件,提升工作流效率。
  • 安装前建议确认权限范围、维护状态,以及是否会触发文件扫描或依赖检查操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Context Mate

A toolkit that works with Claude Code's natural flow. Use what helps, ignore what doesn't.


When This Skill Activates

When context-mate is invoked, analyze the project first before recommending tools.

Step 1: Quick Project Scan

Check for these files (use Glob, don't read contents yet):

File/PatternIndicates
SESSION.mdSession tracking active
IMPLEMENTATION_PHASES.mdPhased planning in use
PROJECT_BRIEF.mdProject explored/planned
CLAUDE.md or .claude/AI context exists
.claude/rules/Correction rules present
package.json or requirements.txtHas dependencies
tests/ or *.test.*Has test infrastructure

Step 2: Git State (if git repo)

git status --short            # Uncommitted changes?
git log --oneline -3          # Recent commit messages?

Step 3: Assess Stage and Recommend

Project Stages:

StageSignsRecommend
New ProjectNo CLAUDE.md, no phases/explore-idea or /plan-project
Active DevelopmentSESSION.md or phases exist/continue-session, developer agents
Maintenance ModeDocs exist, no SESSION.md/plan-feature for new work, project-health for audits
Mid-SessionUncommitted changes + SESSION.mdContinue current work, /wrap-session when done

Step 4: Brief Output

Tell the user:

  1. What's already set up (e.g., "You have SESSION.md and phases - mid-project")
  2. What would help now (e.g., "Run /continue-session to resume")
  3. What's available but not in use (e.g., "No tests yet - test-runner available")

Example:

Project AnalysisCLAUDE.md - AI context configured ✓ SESSION.md - Session tracking active (Phase 2 in progress) ✓ .claude/rules/ - 3 correction rules ○ No test files detected Recommendations: - Run /continue-session to resume Phase 2 work - Use commit-helper agent when ready to commit - Consider test-runner agent when adding tests

Keep it under 10 lines. Don't overwhelm - just highlight what's relevant.


The name has a double meaning:

  1. Your friendly context companion (the toolkit)
  2. *"It's all about the context, maaate!"* (the philosophy)

This isn't "The Correct Way To Do Things" - these tools exist because context windows are real constraints, not because we're dictating methodology.


Quick Reference

Slash Commands (type these)

CommandWhat it does
/context-mateAnalyze project, recommend tools
/explore-ideaStart with a vague idea
/plan-projectPlan a new project
/plan-featurePlan a specific feature
/wrap-sessionEnd work session
/continue-sessionResume from last session
/docs-initCreate project docs
/docs-updateUpdate docs after changes
/briefPreserve context before clearing
/reflectCapture learnings → rules, skills, memory
/releasePrepare for deployment

Agents (Claude uses these automatically)

AgentWhat it does
commit-helperWrites commit messages
code-reviewerReviews code quality
debuggerInvestigates bugs
test-runnerRuns/writes tests
build-verifierChecks dist matches source
documentation-expertCreates/updates docs
orchestratorCoordinates multi-step work

Skills (background knowledge)

SkillWhat it provides
project-planningPhase-based planning templates
project-session-managementSESSION.md patterns
docs-workflowDoc maintenance commands
deep-debugMulti-agent debugging
project-healthAI-readability audits
developer-toolboxThe 7 agents above

The Toolkit at a Glance

┌─────────────────────────────────────────────────────────────┐
│                    PROJECT LIFECYCLE                        │
├─────────────────────────────────────────────────────────────┤
│  /explore-idea → /plan-project → [work] → /wrap-session    │
│       ↓              ↓              ↓           ↓          │
│  PROJECT_BRIEF   PHASES.md     SESSION.md   git checkpoint │
│                                     ↓                      │
│                              /continue-session             │
│                                     ↓                      │
│                              [resume work]                 │
│                                     ↓                      │
│                    /reflect → /release                     │
└─────────────────────────────────────────────────────────────┘

When To Use What

You want to...Use this
Explore a vague idea/explore-idea
Plan a new project/plan-project
Plan a specific feature/plan-feature
End a work session/wrap-session
Resume after a break/continue-session
Create/update docs/docs-init, /docs-update
Debug something stubborndeep-debug skill
Review code qualitycode-reviewer agent
Run tests with TDDtest-runner agent
Prepare a git commitcommit-helper agent
Verify build outputbuild-verifier agent
Check docs are AI-readablecontext-auditor agent
Validate workflows workworkflow-validator agent
Check session handoff qualityhandoff-checker agent

Component Skills

Project Lifecycle (project-workflow)

Nine integrated commands for the complete project lifecycle:

CommandPurpose
/explore-ideaBrainstorm and validate project concepts
/plan-projectGenerate phased implementation plan
/plan-featurePlan a specific feature addition
/docs-initCreate initial project documentation
/docs-updateUpdate docs after changes
/wrap-sessionEnd session with git checkpoint
/continue-sessionResume from SESSION.md
/reflectReview progress and plan next steps
/releasePrepare for deployment/release

Invoke: Skill(skill: "project-workflow")

Session Management (project-session-management)

Track progress across context windows using SESSION.md with git checkpoints.

  • Converts IMPLEMENTATION_PHASES.md into actionable tracking
  • Creates semantic git commits as recovery points
  • Documents concrete next actions for resumption
  • Prevents context loss between sessions

Invoke: Skill(skill: "project-session-management")

Developer Agents (developer-toolbox)

Seven specialized agents for common development tasks:

AgentUse For
commit-helperGenerate meaningful commit messages
code-reviewerSecurity, quality, architecture review
debuggerSystematic bug investigation
test-runnerTDD workflows, test creation
build-verifierVerify dist/ matches source
documentation-expertCreate/update project docs
orchestratorCoordinate multi-step projects

Invoke: Skill(skill: "developer-toolbox")

Deep Debugging (deep-debug)

Multi-agent investigation for stubborn bugs that resist normal debugging.

  • Spawns parallel investigation agents
  • Cross-references findings
  • Handles browser/runtime issues
  • Best when going in circles on a bug

Invoke: Skill(skill: "deep-debug")

Quality Auditing (project-health)

Three agents for AI-readability and workflow quality:

AgentPurpose
context-auditorCheck if docs are AI-readable (score 0-100)
workflow-validatorVerify documented processes work (score 0-100)
handoff-checkerValidate session continuity quality (score 0-100)

Invoke: Skill(skill: "project-health")

Documentation Lifecycle (docs-workflow)

Four commands for documentation management:

CommandPurpose
/docsQuick doc lookup
/docs-initCreate initial docs
/docs-updateUpdate after changes
/docs-claudeGenerate AI-optimized CLAUDE.md

Invoke: Skill(skill: "docs-workflow")


Core Concepts

Sessions ≠ Phases

Sessions are context windows (2-4 hours of work before context fills up).

Phases are work units (logical groupings like "Phase 1: Database Setup").

A phase might span multiple sessions. A session might touch multiple phases. They're independent concepts.

Checkpointed Progress

Git commits serve as semantic checkpoints, not just version control:

# Bad: commits as save points
git commit -m "WIP"
git commit -m "more changes"

# Good: commits as progress markers
git commit -m "Complete Phase 1: Database schema and migrations"
git commit -m "Phase 2 partial: Auth middleware working, UI pending"

When resuming via /continue-session, these commits tell the story of where you are.

Progressive Disclosure

Skills load incrementally to preserve context:

  1. Metadata (~50 tokens) - Always in context, triggers skill loading
  2. SKILL.md body (<5k words) - Loaded when skill activates
  3. Bundled resources - Loaded as needed (templates, references, scripts)

This means a 50-skill toolkit only costs ~2,500 tokens until you actually use something.

Skills Teach, Rules Correct

Two complementary knowledge systems:

SkillsRules
Location~/.claude/skills/.claude/rules/ (project)
ContentRich bundlesSingle markdown files
PurposeTeach how to use XCorrect outdated patterns
ExampleHow to set up Tailwind v4Fix v3 syntax Claude might suggest

Rules are project-portable - they travel with the repo so any Claude instance gets the corrections.

Sub-agents for Isolation

Heavy tasks (code review, debugging, testing) run in sub-agents to:

  • Keep verbose output out of main context
  • Allow parallel execution
  • Provide specialized tool access
  • Return concise summaries

Getting Started

New Project

/explore-idea    # Optional: clarify what you're building
/plan-project    # Generate phased plan
                 # Work on Phase 1...
/wrap-session    # End with checkpoint

Resuming Work

/continue-session    # Reads SESSION.md, suggests next steps
                     # Continue working...
/wrap-session        # Checkpoint again

Adding a Feature

/plan-feature    # Plan the specific feature
                 # Implement...
/wrap-session    # Checkpoint

Debugging Session

# If normal debugging isn't working:
Skill(skill: "deep-debug")
# Spawns investigation agents

The Philosophy

Context windows are real. They fill up. Work gets lost. Sessions end.

These tools don't fight that - they work with it:

  • SESSION.md captures state for next session
  • Git checkpoints create recovery points
  • Sub-agents keep heavy work isolated
  • Progressive disclosure preserves context budget

Use what helps. Ignore what doesn't.

This is the knifey-spooney school of project management:

Traditional PMContext Mate
"Follow the methodology""She'll be right"
"Update the Gantt chart"/wrap-session
"Consult the RACI matrix""Oi Claude, what next?"

No ceremonies. No standups with your AI. No burndown charts.

If Homer Simpson can't figure it out in 30 seconds, it's too complicated.

*It's all about the context, maaate.* 🥄

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.71%
按下载量换算400

Claude

31.69%
按下载量换算376

Cursor

20.2%
按下载量换算240

Gemini CLI

10.21%
按下载量换算121

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills