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

synthesis-project-management综合项目管理

Agent Skill

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

总安装

279

周安装

12

GitHub Stars

3

下载量

98
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rajivpant/synthesis-skills --skill synthesis-project-management

简介

synthesis-project-management 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于项目管理相关的信息整理与资源定位,可结合来源仓库进一步核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议确认是否会触发联网、命令执行或文件读写等操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Synthesis Project Management System

A lightweight project management system designed for human-agent collaboration. Optimized for context preservation across conversation sessions and context compaction events.

Configuration

These values are user-specific. Update them for your environment.

SettingValueDescription
ai_knowledge_workspaceai-knowledge-{workspace}Root directory for your ai-knowledge repo (e.g., ai-knowledge-rajiv)
projects_pathprojects/Directory within the workspace for all project folders
index_fileprojects/index.yamlSingle index file for all projects
lessons_pathprojects/_lessons/Cross-project lessons and patterns directory

Design Principles

  1. Discoverability over documentation — Agents can search/grep; humans need quick orientation. Prefer consistent naming conventions over maintained indexes.
  2. Convention over configuration — Consistent structure means less cognitive load. When everything follows the same pattern, both humans and agents know where to look.
  3. Single source of truth — No duplicate indexes to maintain. Files should be self-describing through front matter and naming conventions.
  4. Self-describing files — Date prefixes, status in index.yaml, front matter metadata. No separate documentation that can get stale.
  5. Agents do the work — Templates are obsolete. To create something new, examine an existing example and adapt it. Agents excel at this.

Problem This Solves

When working with AI assistants on multi-session projects:

  • Context compaction (conversation summarization) loses detailed progress
  • Session boundaries create information gaps
  • Multiple projects create confusion about current state
  • Lessons learned get lost instead of compounding

This system provides persistent state that survives context loss.


System Architecture

All project management lives in one location within your ai-knowledge workspace:

ai-knowledge-{workspace}/
└── projects/
    ├── index.yaml               # Single index for ALL projects (status field, not folders)
    │
    ├── {project-id}/            # Project folders (flat structure)
    │   ├── CONTEXT.md           # Working memory — active state (budget: ≤150 lines)
    │   ├── REFERENCE.md         # Semantic memory — stable facts (updated in place)
    │   ├── sessions/            # Episodic memory — archived session logs
    │   │   └── YYYY-MM.md       #   Monthly files
    │   ├── README.md            # Static documentation (optional)
    │   └── resources/           # Project data and artifacts (optional)
    │       ├── in/              # Inputs
    │       ├── artifacts/       # Working data
    │       ├── out/             # Outputs
    │       └── scripts/         # One-off scripts
    │
    └── _lessons/                # Cross-project lessons and patterns
        └── YYYY-MM-DD-*.md      # Date-prefixed for discoverability

Key Structural Decisions

DecisionRationale
Flat project foldersStatus is in index.yaml, not folder names. No moving folders when status changes.
_lessons/ underscore prefixDistinguishes from project folders. Sorts to top. Visible, not hidden.
Three-tier contextCONTEXT.md (working memory), REFERENCE.md (stable facts), sessions/ (history). See the synthesis-context-lifecycle skill.
Date-prefixed lesson filesEnables time-based discovery. ls -t shows recent. No index needed.
No templates folderAgents examine existing examples and adapt. Templates are a pre-AI pattern.
No patterns.mdPatterns are lessons with type: pattern in front matter. One folder to search.

Components

1. Project Index (index.yaml)

Single source of truth for all projects. Status is a field, not a folder.

# Projects Index
# Last updated: YYYY-MM-DD

# Status values:
#   active    - Currently being worked on
#   paused    - Started but on hold
#   ongoing   - Continuous/maintenance work, no defined end state
#   completed - Has defined deliverables that are done
#   archived  - Old/obsolete, kept for reference only

projects:
  - id: my-project
    name: My Project Name
    status: active
    description: Brief description of what this project accomplishes
    tags:
      - tag1
      - tag2
    last_session: YYYY-MM-DD

  - id: finished-project
    name: Finished Project
    status: completed
    completed_date: YYYY-MM-DD
    description: What was accomplished
    tags:
      - tag1
    outcome: success
    key_result: Brief summary of what was delivered

Update when: Session end (update last_session), project status changes, new project added.

2. Tiered Context Architecture

Projects use a three-tier context system that separates information by lifecycle. This prevents unbounded growth of context files and keeps AI collaborators effective across long-running projects.

Detailed documentation: See the synthesis-context-lifecycle skill for templates, migration guides, decision trees, and quality metrics.

The three tiers:

TierFilePurposeBudgetUpdate pattern
Working memoryCONTEXT.mdCurrent state, active tasks, recent sessions≤150 lines (hard)Every session
Semantic memoryREFERENCE.mdStable facts (team, URLs, architecture)≤300 lines (soft)Updated in place when facts change
Episodic memorysessions/YYYY-MM.mdArchived session logsNo budgetAppend-only, monthly files

Archival protocol: At session start, if CONTEXT.md exceeds 120 lines: archive completed tasks and old session logs to sessions/, move stable facts to REFERENCE.md, verify content exists in destination, then remove from CONTEXT.md. Archive FIRST, delete second — two-phase commit.

3. Lessons (_lessons/)

Cross-project mistakes, insights, and patterns. All in one folder with date prefixes.

File naming: YYYY-MM-DD-topic-slug.md

For incidents/mistakes:

---
type: incident
title: Brief Title
severity: minor | moderate | serious | critical
---

# {Topic}: {Brief Title}

## What Happened
## Root Cause
## Impact
## Lesson
## Prevention

For patterns (generalized insights):

---
type: pattern
title: Pattern Name
---

# {Pattern Name}

## Context
## Problem
## Solution
## Examples

Update when: Immediately when you learn something reusable.


The Protocol

During Work

Complete task → Update CONTEXT.md → Commit → Next task

NOT:

Complete task → Complete task → Complete task → (context compaction) → Lost details

Session Start

  1. Read CONTEXT.md — Understand current state before touching code
  2. Check line count — If CONTEXT.md >150 lines, archive before starting work
  3. Read REFERENCE.md — If it exists and the task needs reference details
  4. Search _lessons/grep for relevant past experiences
  5. Check related projects — Look at related: tags in index.yaml

Session End

  1. Final CONTEXT.md update — Ensure all sections current (≤150 lines)
  2. Archive if needed — Move old sessions to sessions/, stable facts to REFERENCE.md
  3. Update index.yaml — Set last_session date
  4. Commit all changes — Do not leave uncommitted work

File Requirements by Project Status

StatusCONTEXT.mdREFERENCE.mdsessions/CONTEXT.md budget
activeRequiredWhen neededWhen needed≤150 lines
pausedRequiredWhen neededWhen needed≤150 lines
ongoingRequiredWhen neededWhen needed≤150 lines
completedRequired (summary)OptionalOptional≤80 lines
archivedFrozenFrozenFrozenN/A

Project Discovery

When a user mentions a project:

  1. Read projects/index.yaml
  2. Match user's phrase against project name, description, id, tags
  3. If match found, read the project's CONTEXT.md
  4. Summarize current state and next steps
  5. Begin work from where it left off

Common Mistakes

MistakeConsequencePrevention
Not updating CONTEXT.mdLost progress after compactionUpdate after EVERY task
Deferring updates to "session end"Forget to updateUpdate immediately
Putting management files in project reposExposes internal processKeep in ai-knowledge-{workspace}
Not checking _lessons/Repeat mistakesGrep at session start
Creating separate patterns.mdDuplicate, gets staleUse type: pattern in _lessons/
Maintaining index files for lessonsGets staleUse date prefixes, ls -t

Why This Works

  1. Filesystem is persistent — Survives context compaction
  2. Convention-based — Same structure everywhere, easy to navigate
  3. Tiered by lifecycle — Hot data in CONTEXT.md, warm in REFERENCE.md, cold in sessions/
  4. Budgeted — 150-line cap prevents degradation over time
  5. Self-maintaining — Archival protocol is garbage collection for context
  6. Searchable — Agents grep, humans ls -t
  7. Scales — Tested across 60+ projects over months of continuous use

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.77%
按下载量换算33

Claude

29.74%
按下载量换算29

Cursor

17.89%
按下载量换算18

Gemini CLI

9.83%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills