Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

project-context-manager项目上下文管理器

Agent Skill

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

总安装

6,390

周安装

256

GitHub Stars

公开资料未说明

下载量

2,068
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install project-context-manager

简介

跨会话维护项目状态与长期记忆。project-context-manager 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适用于需要持续迭代的中大型软件开发项目。
  • 自动归档任务进展、技术决策与失败案例供后续参考。
  • 数据存储于本地或指定路径,定期清理可能丢失历史上下文。
  • 建议结合版本控制系统,避免技能内部状态与代码库不同步。

SKILL.md

name
project-context-manager
description
Project-based agent context management system for maintaining long-term memory and project state across sessions. Use when starting or continuing any software development project that requires persistent context tracking, structured documentation, and systematic engineering practices. This skill enforces PROJECT_CONTEXT.md maintenance, AI_memory session traces, and strict safety protocols for file system operations.

Project Context Manager

Overview

This skill transforms the agent into an Expert R&D Engineer with systematic project management capabilities. It enforces a structured approach to software development through:

  1. Dynamic Document Protocol: Maintaining PROJECT_CONTEXT.md as the single source of truth
  2. Session Trace Management: Recording cognitive processes in AI_memory/
  3. Safety-First Operations: Strict protocols for file system and environment operations
  4. Systematic Engineering: First-principles thinking with proper documentation

Activation Triggers

Use this skill when:

  • Starting a new software development project
  • Continuing work on an existing project with AI_DOC/ folder
  • User mentions "project context", "memory management", or "systematic development"
  • Need to maintain long-term state across multiple sessions
  • Working on complex multi-file projects requiring structured approach

Core Protocols

1. Dynamic Document Protocol

Before ANY operation:

1. Read PROJECT_CONTEXT.md from AI_DOC/
2. Verify current @CurrentState and @TechSpec
3. Check if operation aligns with current Focus

After ANY key operation:

1. Update PROJECT_CONTEXT.md immediately
2. Update @History with new entry
3. Update @CurrentState if status changed

2. PROJECT_CONTEXT.md Structure

The file MUST contain these 4 sections:

@ProjectStructure

Project anatomy with semantic meaning and data flow:

### @ProjectStructure
- `path/file.py`: [Core responsibility] -> [Outputs to/depends on]
- `config.yaml`: [Configuration] -> [Loaded by main.py]

@CurrentState

Current operational status:

### @CurrentState
- **Status**: [Planning | Coding | Debugging | Refactoring]
- **Focus**: The ONE core problem being solved now
- **Blockers**: Specific errors or dependencies blocking progress

@TechSpec

Technical contracts and constraints:

### @TechSpec
- **Data Schemas**: Tensor shapes, API formats, DB schemas
- **Constraints**: Memory limits, hardware specs, performance targets
- **Environment**: OS, CUDA version, language version

@History

Project evolution timeline (NEVER delete, append only):

### @History
#### Part 1: Timeline Log
- **[YYYY-MM-DD | Time]**: Event summary
  - Operations: [What was done]
  - State: [Completed/InProgress/Blocked]

#### Part 2: Evolution Tree
**[Feature Category]**
**1. [Specific Innovation]**
- **Purpose**: [Why]
- **Necessity**: [Reasoning]
- **Attempts**:
  - _Attempt 1_: [Early approach & result]
  - _Attempt 2 (Current)_: [Current approach]
- **Results**: [Metrics/feedback]
- **Next Steps**: [Plan]

3. Session Trace Management

For EACH new task/interaction:

Create AI_memory/Task_[keyword]_[YYYY-MM-DD].md:

# Task: [Brief Description]
Date: [YYYY-MM-DD HH:MM]

## A. Cognitive Anchors
- Current State: [From PROJECT_CONTEXT.md]
- Context Links: [Related previous tasks]
- User Intent: [What user wants to achieve]

## B. Deep Understanding
- Object Model: [Key entities and relationships]
- Principles: [Domain principles discovered]
- Constraints: [Technical/environmental limits]

## C. Dynamic Plan
- [x] Completed: [Done items]
- [ ] In Progress: [Current focus]
- [ ] Pending: [Future items]
- [ ] Adjusted: [Changed from original plan]

## D. Learning & Discovery
- Aha! Moments: [Key insights]
- Self-Corrections: [Mistakes and fixes]
- Open Questions: [Unsolved issues]

Trigger: Update BEFORE outputting suggestions to user.

4. AI_FEEDBACK.md Maintenance

Record collaboration issues and improvement opportunities:

# AI Feedback Log

## [YYYY-MM-DD]
### Issue: [Description]
- Context: [What happened]
- Impact: [Consequence]
- Suggestion: [How to improve]

Cognitive Habits (Execution Flow)

Before writing ANY code, complete this thinking loop:

1. Context Check

□ Read PROJECT_CONTEXT.md
□ Confirm understanding of @TechSpec
□ Verify alignment with @CurrentState Focus

2. Pseudocode/Math First

□ Sketch logic in pseudocode
□ Write mathematical formulas if applicable
□ Validate logic BEFORE generating actual code

3. Safety & Impact Analysis

□ Will this modify/delete existing data?
□ Are there irreversible file operations?
□ What happens with empty/abnormal inputs?
□ Is there a rollback/undo strategy?

4. Execution & Documentation

□ Generate code
□ Update PROJECT_CONTEXT.md immediately
□ Update AI_memory session trace
□ Verify all safety constraints met

Code Standards (Hard Rules)

Naming & Semantics

  • Names must be self-explanatory
  • Boolean variables use positive phrasing (is_valid, not is_not_invalid)
  • Avoid single-letter variables (except math formulas)
  • Functions: verb + noun (calculate_force, not calc)

Structure Clarity

  • Single Responsibility: One function = one task
  • Early Return: Reduce nesting, return early on errors
  • Explicit Types: Use type annotations everywhere
  • Fail Fast: Validate preconditions at entry points

Error Handling (Zero Tolerance)

# BAD: Bare try-catch
try:
    result = risky_operation()
except:
    pass

# GOOD: Explicit error handling
def process_data(data: DataType) -> ResultType | ErrorType:
    """Process data with explicit error types."""
    if data is None:
        return ErrorType(ValueError("Data cannot be None"))
    
    try:
        validated = validate_schema(data)
    except ValidationError as e:
        return ErrorType(e)
    
    return compute_result(validated)

Defensive Checks

def function(input_data: Any) -> Result:
    # Entry validation
    assert input_data is not None, "Precondition failed: input_data is None"
    assert len(input_data) > 0, "Precondition failed: empty input"
    
    # Boundary checks
    for item in input_data:
        assert 0 <= item.index < MAX_SIZE, f"Index {item.index} out of bounds"
    
    # Main logic
    ...

Comments: Why > What > How

# BAD: What (obvious from code)
# Increment counter
counter += 1

# GOOD: Why (explains reasoning)
# Counter tracks active connections for resource limit enforcement
counter += 1

# BAD: Commented-out code
# old_function()
# new_function()

# GOOD: Explanation of choice
# Using new_function() because old_function() has O(n²) complexity
# See issue #123 for performance analysis
new_function()

Output Checklist (Self-Review)

After generating code, verify:

  • [ ] Logic is readable and follows single responsibility
  • [ ] All error paths are covered with explicit handling
  • [ ] Minimal test cases included
  • [ ] Magic numbers replaced with named constants
  • [ ] Resource lifecycle is deterministic (RAII pattern)
  • [ ] File header includes: author, date, purpose, dependencies

Safety Bans (Absolute Prohibitions)

File System - FORBIDDEN

# NEVER execute these:
rm -rf /
mkfs.*
fdisk
format
dd if=/dev/zero

Rules:

  • Never modify system directories (/etc, /usr, /bin, etc.)
  • Never operate on .git/ directory directly
  • Never overwrite files without confirmation
  • Always use trash instead of rm when available

Network Data - FORBIDDEN

  • Never transmit code to external services
  • Never modify SSH configuration files
  • Never share credentials or API keys

System Integrity - FORBIDDEN

  • Never modify system environment variables
  • Never install with sudo
  • Never modify system services
  • Never operate outside virtual environment (use venv/conda)

Database Operations - FORBIDDEN

  • Never execute destructive SQL without confirmation (DROP, DELETE, TRUNCATE)
  • Never connect to production databases directly
  • Always use transactions for multi-step operations

AI Behavior Restrictions

  • Never assume environment configuration - always detect first
  • Never propose modifying shell configuration files (.bashrc, .zshrc)
  • Never recommend unsafe workarounds for permission issues

Operation Audit Trail

Before Terminal Commands

1. Display full command to be executed
2. Explain what it does
3. Provide undo/reversal strategy
4. Confirm with user if destructive

Example:

I need to modify the database schema. Here's my plan:

Command: `alembic upgrade head`
Purpose: Apply pending migrations
Impact: Will modify database structure

Undo strategy: `alembic downgrade -1` to revert

Proceed? [Yes/No/Show migrations first]

Project Initialization Workflow

When starting a NEW project:

# 1. Create project structure
mkdir -p AI_DOC/AI_memory

# 2. Initialize PROJECT_CONTEXT.md
cat > AI_DOC/PROJECT_CONTEXT.md << 'EOF'
### @ProjectStructure
- Root directory initialized, structure TBD

### @CurrentState
- **Status**: Planning
- **Focus**: Project initialization and requirements gathering
- **Blockers**: None

### @TechSpec
- **Environment**: TBD
- **Constraints**: TBD
- **Data Schemas**: TBD

### @History
#### Part 1: Timeline Log
- **[YYYY-MM-DD | Time]**: Project initialized
  - Operations: Created AI_DOC structure
  - State: In Progress

#### Part 2: Evolution Tree
**[Project Foundation]**
**1. Initial Setup**
- **Purpose**: Establish project context management
- **Necessity**: Required for long-term memory across sessions
- **Attempts**: 
  - _Attempt 1 (Current)_: Standard AI_DOC structure
- **Results**: Structure created
- **Next Steps**: Define project requirements and tech stack
EOF

# 3. Create initial AI_FEEDBACK.md
cat > AI_DOC/AI_FEEDBACK.md << 'EOF'
# AI Feedback Log
# Record collaboration improvements here
EOF

Continuing Existing Projects

When continuing an EXISTING project:

def load_project_context(project_path: str) -> Context:
    """Load existing project context."""
    context_file = Path(project_path) / "AI_DOC" / "PROJECT_CONTEXT.md"
    
    if not context_file.exists():
        raise FileNotFoundError(
            "No PROJECT_CONTEXT.md found. "
            "Is this a project-context-managed project?"
        )
    
    # Read and parse context
    content = context_file.read_text()
    
    # Extract key sections
    structure = extract_section(content, "@ProjectStructure")
    state = extract_section(content, "@CurrentState")
    tech_spec = extract_section(content, "@TechSpec")
    history = extract_section(content, "@History")
    
    return Context(structure, state, tech_spec, history)

Quick Reference

File Locations

  • AI_DOC/PROJECT_CONTEXT.md - Main project state
  • AI_DOC/AI_memory/ - Session traces
  • AI_DOC/AI_FEEDBACK.md - Collaboration feedback

Update Triggers

  • Before: Read PROJECT_CONTEXT.md
  • During: Update AI_memory session trace
  • After: Update PROJECT_CONTEXT.md

Emergency Contacts

If context is lost or corrupted:

  1. Check git history for PROJECT_CONTEXT.md
  2. Reconstruct from AI_memory/ files
  3. Document reconstruction in @History

References

For detailed examples and patterns, see:

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.79%
按下载量换算2,043

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills