Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

project-mngt项目管理

Agent Skill

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

总安装

1,309

周安装

54

GitHub Stars

14

下载量

428
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vladm3105/aidoc-flow-framework --skill project-mngt

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词、任务场景或来源线索进行信息整理的项目环境。
  • 通过关键词搜索、来源仓库筛选和结果排序来高效获取目标信息。
  • 安装命令:npx skills add https://github.com/vladm3105/aidoc-flow-framework --skill project-mngt。
  • 建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。

SKILL.md


Expected Outputs

Every invocation MUST produce:

  1. Implementation Plan Document

- Filename: PLAN-XXX_[project_name].md - Location: User-specified or docs/IMPL/ - Format: Markdown following template - Versioning: v1.0, v2.0, v3.0...

  1. Required Sections

- Document Control section with project metadata and revision history - Executive Summary - Progress Summary (if update) - Stage breakdown (MVP, MMP, MMR) - Atomic groups with priorities, status, dependencies - Timeline visualization (Gantt chart) - Success metrics and exit criteria - Change log (if update) - Traceability matrix

  1. Change Log (updates only)

- BRD changes documented - Impact analysis - Specific group changes - Timeline impact


Decision Frameworks

Framework 1: MVP Scope Decisions

Question: Should this feature be in MVP?

Key Questions:

  1. Does it test the core hypothesis?
  2. Can we validate without it?
  3. Is there a simpler alternative for MVP?
  4. Does it validate high-risk assumption?
  5. Is there a viable workaround?

MVP Inclusion Criteria (meet at least 2):

  • [ ] Validates core technical feasibility
  • [ ] Required for end-to-end workflow
  • [ ] Tests riskiest assumption
  • [ ] Generates critical user feedback
  • [ ] No viable workaround exists

Framework 2: Parallel vs Sequential

Decision Checklist:


Group A + Group B can be parallel if:

*    No code dependencies
*    Different files/modules
*    No shared database schema changes
*    No shared infrastructure
*    Separate team members available
*    No specialized skill bottleneck
*    Integration points clearly defined
*    Low rework risk

If 8-10 checks = ✅ PARALLEL (same priority) If 5-7 checks = ⚠️ PARALLEL with caution If <5 checks = ❌ SEQUENTIAL

Framework 3: Stage Gate Criteria

MVP → MMP Gate:

Exit Criteria (must meet ALL):

  • [ ] Core functionality works end-to-end
  • [ ] Riskiest assumptions validated
  • [ ] User feedback collected
  • [ ] Critical bugs logged
  • [ ] Team consensus: hypothesis validated
  • [ ] Product Owner sign-off

Proceed if:

  • ✅ Hypothesis confirmed
  • ✅ Technical feasibility proven
  • ✅ Team confident

STOP if:

  • ❌ Hypothesis rejected
  • ❌ Technical infeasibility
  • ❌ Cost exceeds value

Framework 4: Update Impact Assessment

Process:

Step 1: Categorize Change

  • Type: New / Modified / Removed / External dependency
  • Size: Small (<5 req) / Medium (5-15) / Large (>15)
  • Timing: Early (planned) / Mid (in-progress) / Late (completed)

Step 2: Map to Groups

  • Completed groups: [Impact: None / Re-validation needed]
  • In-progress groups: [Impact: Continue / Adjust / Stop]
  • Planned groups: [Impact: Modify / Cancel / Reprioritize]

Step 3: Impact Level

  • NONE: No action
  • LOW: <1 week, adjust in place
  • MEDIUM: 1-2 weeks, consider new group
  • HIGH: >2 weeks, create new group
  • CRITICAL: Invalidates group, cancel/redistribute

Step 4: Decision Matrix

  • COMPLETED: No change (immutable) unless re-validation needed
  • IN_PROGRESS: Continue / Adjust / Stop and replan
  • PLANNED: Adjust / Modify / Cancel / Create new

Adaptation Guidelines

For Different Project Types

Infrastructure Projects

  • MVP: Single environment (dev) with core infrastructure, automation scripts
  • MMP: Production with full DR/HA, all IaC automated
  • Grouping: By layer (network, compute, storage, security)
  • Critical Path: IAM/Security → Network → Compute

API Development

  • MVP: Core endpoints, happy-path only, simplified auth
  • MMP: All endpoints, full error handling, OAuth, rate limiting
  • Grouping: By resource/domain (Users API, Orders API)
  • Parallel: Independent resources can develop simultaneously

ML/AI Systems

  • MVP: Single model, manual training, sample data
  • MMP: Automated pipeline, versioning, A/B testing, production serving
  • Grouping: By ML pipeline stage (data prep, training, serving)
  • Critical Path: Data quality → Model training → Serving

Web Applications

  • MVP: Single-page prototype, core flow, desktop-only
  • MMP: Responsive, cross-browser, all flows, production hosting
  • Grouping: By user journey (registration, onboarding, core workflow)
  • Parallel: Frontend + Backend (clear API contract)

For Changing Requirements

New Features Added Mid-Project

  1. Is it MVP validation? → Add to MVP (rare)
  2. Essential for launch? → Add to MMP
  3. Incremental value? → Add to MMR
  4. Can wait? → Backlog

Process: Create requirement IDs, assess dependencies, fit in existing or create new group, assign stage/priority, update timeline, document in change log.

Features Removed/Descoped

  1. In COMPLETED group? → Note descoping (already built)
  2. In IN_PROGRESS? → Assess if should continue or stop
  3. In PLANNED? → Cancel group or reduce scope

Process: Identify affected groups, remove requirements, cancel empty groups or adjust deliverables, update timeline, document rationale.

Priority Changes (Urgent Feature)

  1. Verify dependencies allow earlier execution
  2. Reprioritize to earlier priority number
  3. Shift other groups later
  4. Assess resource impact
  5. Update timeline
  6. Communicate trade-offs in change log

For Different Team Sizes

Small Team (2-3 FTE)

  • Limited parallelization (max 2 tracks)
  • Focus on sequence over parallel
  • Longer MVP/MMP stages
  • Add 30-50% buffer for context switching

Medium Team (4-8 FTE)

  • Good balance (2-3 parallel tracks)
  • Specialization possible
  • Maximize stage parallelization
  • Clear ownership

Large Team (9+ FTE)

  • High parallelization (4+ tracks)
  • Specialized roles
  • Risk: Communication overhead, integration complexity
  • Strategy: Strict API contracts, daily syncs, strong PM

Best Practices Compendium

Common Pitfalls and Solutions

Pitfall 1: MVP Scope Creep

  • Problem: MVP grows with "nice-to-have" features
  • Solution: Ruthlessly apply MVP criteria, time-box MVP, create "MMP Backlog"

Pitfall 2: Ignoring Dependencies

  • Problem: Parallelizing groups with hidden dependencies causes rework
  • Solution: Thorough dependency mapping, define APIs before parallel work, daily syncs

Pitfall 3: Modifying Completed Work

  • Problem: Updates change completed groups, causing confusion
  • Solution: Mark completed as IMMUTABLE, create NEW groups for modifications

Pitfall 4: Underestimating MMP Polish

  • Problem: Thinking MMP is "MVP + features" vs "production quality"
  • Solution: Budget 50-100% more time for MMP, use strict "Definition of Done"

Pitfall 5: No Clear Stage Gates

  • Problem: Moving MVP → MMP without validating success
  • Solution: Explicit gate meetings, written exit criteria, PO sign-off required

When to Deviate

Acceptable Deviations:

  • Regulatory deadline: Compress stages, parallelize aggressively
  • Market window: Skip some MMR features, focus on differentiators
  • Technical debt crisis: Insert "Stabilization Sprint" between stages

Never Deviate:

  • ❌ Skip MVP validation
  • ❌ Launch MMP with known high-severity bugs
  • ❌ Ignore completed work in updates
  • ❌ Parallelize hard dependencies

Lessons Learned

  1. MVP Always Takes Longer: Add 25% buffer (50% for first-time team)
  2. MMP Needs More Testing: Budget 30% of MMP for testing/QA
  3. Documentation Never "Done": Start in MVP, update continuously
  4. Velocity Improves: First groups slower (learning), later groups faster (momentum)

Validation Checklist

For New Plans

Completeness:

  • [ ] All requirements accounted for
  • [ ] Dependencies identified and documented
  • [ ] No circular dependencies

Atomic Groups:

  • [ ] Groups independently testable
  • [ ] Groups cohesive (related functionality)
  • [ ] Size reasonable (1-4 weeks each)
  • [ ] Descriptive names

Stage Assignment:

  • [ ] MVP scope minimal (validation only)
  • [ ] MMP includes launch essentials
  • [ ] MMR is incremental (not launch-critical)

Timeline:

  • [ ] Estimates based on complexity
  • [ ] Buffers included at stage level
  • [ ] Timeline realistic for team size

For Updated Plans (CRITICAL)

Immutability:

  • [ ] All completed work preserved unchanged
  • [ ] Completion dates/deliverables unchanged
  • [ ] No deletions/scope changes to completed groups

Impact Assessment:

  • [ ] In-progress work assessed
  • [ ] Only planned work modified
  • [ ] New requirements mapped to groups

Change Log:

  • [ ] BRD changes documented
  • [ ] Impact analysis complete
  • [ ] Specific changes listed with reasons
  • [ ] Timeline impact calculated

Timeline Continuity:

  • [ ] Timeline starts from current date
  • [ ] Remaining work calculated accurately
  • [ ] Variance explained

Progress Tracking:

  • [ ] Progress summary accurate
  • [ ] Status categories correct
  • [ ] Completion percentage calculated

Appendix

Complexity Rating Scale

RatingDefinitionDuration
1Trivial: Config change, minimal code0.5-1 week
2Simple: Single component, clear requirements1-2 weeks
3Moderate: Multiple components, some integration2-3 weeks
4Complex: Cross-system integration, unknowns3-4 weeks
5Very Complex: Architectural change, high uncertainty4-6 weeks

Glossary

MVP: Learning-focused first version to validate hypothesis. Functional but imperfect.

MMP: Market-ready first release with essential features and production quality. Can be sold.

MMR: Incremental feature releases after MMP. Production-quality, adds value.

Atomic Group: Independently deployable set of related requirements. 1-4 weeks, cohesive, testable.

Critical Path: Longest dependency chain determining minimum timeline.

Dependency: Prerequisite relationship between requirements or groups.

Stage Gate: Decision point between stages to validate completion.

Priority Number: Sequencing indicator. Same number = parallel execution.

Status: Current state (COMPLETED, IN_PROGRESS, BLOCKED, PLANNED, MODIFIED, CANCELLED).

Change Log: Document section tracking all modifications from previous version.

Immutable: Cannot be changed. Completed work is immutable in updates.


Worked Example Reference

See examples directory for complete worked examples:

Trading System v1.0: Initial plan from 11 BRDs

  • 13 atomic groups across MVP/MMP/MMR
  • All groups PLANNED
  • Timeline: 27 weeks from start

Trading System v2.0: Updated after BRD-004 changes

  • MVP completed (Groups 1-4)
  • Group 5 in progress
  • New requirements added
  • Timeline adjusted, change log included

*(Full examples in {project_root}/.claude/skills/project-mngt/examples/)*


Skill Version History

Version 1.0 (2025-01-03):

  • Initial release
  • Complete MVP/MMP/MMR framework
  • Change management protocols
  • Templates and decision frameworks
  • Validation checklists
  • Adaptation guidelines

Support and Feedback

For issues or enhancements:

  1. Document issue or suggestion
  2. Provide scenario where skill didn't work
  3. Suggest improvement with rationale

This skill evolves based on real-world usage and feedback.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Gemini CLI

29.47%
按下载量换算126

Claude Code

22.61%
按下载量换算97

OpenCode

17.59%
按下载量换算75

Antigravity

11.35%
按下载量换算49

Codex

7.15%
按下载量换算31

windsurf

3.47%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills