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

project-alignment-validation项目一致性验证

Agent Skill

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

总安装

499

周安装

20

GitHub Stars

23

下载量

162
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/akaszubski/autonomous-dev --skill project-alignment-validation

简介

用于查找、检索和筛选相关信息,适合在复杂项目中验证一致性或匹配需求。

  • 可根据关键词、任务场景快速定位候选结果,辅助对齐决策。
  • 需确认权限范围与维护状态,避免触发不必要的网络请求或文件操作。
  • 安装命令:npx skills add https://github.com/akaszubski/autonomous-dev --skill project-alignment-validation
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Project Alignment Validation Skill

Comprehensive patterns for validating alignment between features, code, and PROJECT.md. Focuses on semantic validation (intent and goals) rather than literal pattern matching.

When This Skill Activates

  • Validating feature alignment with PROJECT.md
  • Assessing gaps between current state and goals
  • Resolving conflicts between documentation and implementation
  • Checking GOALS, SCOPE, CONSTRAINTS, ARCHITECTURE compliance
  • Keywords: "alignment", "PROJECT.md", "validation", "GOALS", "SCOPE", "semantic", "gap"

Core Validation Approach

Semantic Validation Philosophy

Semantic validation focuses on understanding the *intent* and *purpose* behind requirements, not just literal text matching.

Key Principles:

  1. Intent over Syntax: Validate that features serve project goals, not just match keywords
  2. Context-Aware: Consider project phase, constraints, and strategic direction
  3. Progressive Assessment: Start with high-level goals, drill down to details
  4. Graceful Gaps: Identify gaps without blocking progress; prioritize by impact

Contrast with Literal Validation:

  • Literal: "Feature must contain keyword 'authentication'"
  • Semantic: "Feature must support project's user management goals"

PROJECT.md Structure

Four Core Sections

Every PROJECT.md should define:

  1. GOALS: Strategic objectives and desired outcomes
  2. SCOPE: What's in scope (and explicitly out of scope)
  3. CONSTRAINTS: Technical, resource, and policy limitations
  4. ARCHITECTURE: High-level design principles and patterns

Validation Checklist

For each feature, validate against all four sections:

## Alignment Checklist

### GOALS Alignment
- [ ] Feature serves at least one project goal
- [ ] Feature doesn't conflict with any goals
- [ ] Feature priority matches goal priority
- [ ] Success metrics align with goal metrics

### SCOPE Alignment
- [ ] Feature is explicitly in scope
- [ ] Feature doesn't overlap with out-of-scope items
- [ ] Feature respects scope boundaries
- [ ] Feature dependencies are in scope

### CONSTRAINTS Alignment
- [ ] Feature respects technical constraints
- [ ] Feature works within resource constraints
- [ ] Feature complies with policy constraints
- [ ] Feature considers timeline constraints

### ARCHITECTURE Alignment
- [ ] Feature follows architectural patterns
- [ ] Feature integrates with existing components
- [ ] Feature respects design principles
- [ ] Feature maintains architectural consistency

See: docs/alignment-checklist.md for detailed checklist with examples


Gap Assessment Methodology

Identify Gaps

Gaps occur when current state doesn't match desired state defined in PROJECT.md.

Types of Gaps:

  1. Feature Gaps: Missing functionality needed to achieve goals
  2. Documentation Gaps: PROJECT.md doesn't reflect actual implementation
  3. Constraint Gaps: Implementation violates stated constraints
  4. Architectural Gaps: Code doesn't follow design principles

Prioritize Gaps

Not all gaps are equal. Prioritize by:

Impact Assessment:

  • Critical: Blocks primary goals, violates hard constraints
  • High: Significantly delays goals, creates technical debt
  • Medium: Slows progress, reduces quality
  • Low: Minor inconvenience, cosmetic issues

Effort Estimation:

  • Quick Win: High impact, low effort (prioritize)
  • Strategic: High impact, high effort (plan carefully)
  • Tactical: Medium impact, medium effort (schedule)
  • Defer: Low impact, high effort (defer or drop)

Document Gaps

Use standardized gap assessment template:

## Gap Assessment

### Gap Summary
- **Type**: [Feature/Documentation/Constraint/Architectural]
- **Impact**: [Critical/High/Medium/Low]
- **Effort**: [Quick Win/Strategic/Tactical/Defer]

### Current State
[Describe what exists today]

### Desired State
[Describe what PROJECT.md defines]

### Gap Details
[Explain the specific differences]

### Recommended Action
[Propose concrete steps to close gap]

### Dependencies
[List any prerequisites or blockers]

See: docs/gap-assessment-methodology.md for complete methodology


Conflict Resolution Patterns

Detect Conflicts

Conflicts arise when:

  • Feature serves one goal but violates another
  • Feature is in scope but violates constraints
  • Implementation follows architecture but misses goals
  • Documentation and code tell different stories

Resolution Strategies

Strategy 1: Update PROJECT.md (Documentation is wrong)

  • Current state is correct, PROJECT.md is outdated
  • Update PROJECT.md to reflect actual strategic direction
  • Validate changes with stakeholders

Strategy 2: Modify Feature (Implementation is wrong)

  • PROJECT.md is correct, feature needs adjustment
  • Refactor feature to align with goals/scope/constraints
  • May require re-planning or re-architecting

Strategy 3: Negotiate Compromise (Both partially correct)

  • Find middle ground that serves goals within constraints
  • May require adjusting both PROJECT.md and implementation
  • Document trade-offs and rationale

Strategy 4: Escalate Decision (Requires stakeholder input)

  • Conflict involves strategic direction or priorities
  • Present options with trade-offs to decision makers
  • Document decision and update PROJECT.md

See: docs/conflict-resolution-patterns.md for detailed resolution workflows


Progressive Disclosure

This skill provides layered documentation:

Always Available (Frontmatter)

  • Skill name and description
  • Keywords for auto-activation
  • Quick reference to core concepts

Available in Full Content

  • Detailed alignment checklist
  • Semantic validation approach
  • Gap assessment methodology
  • Conflict resolution patterns
  • Templates for reports and assessments
  • Real-world examples and scenarios

Load Full Content When Needed

  • Creating alignment reports
  • Assessing project health
  • Resolving complex conflicts
  • Onboarding new projects
  • Validating strategic changes

Documentation Resources

Comprehensive Guides

  • docs/alignment-checklist.md - Standard validation steps for GOALS/SCOPE/CONSTRAINTS/ARCHITECTURE
  • docs/semantic-validation-approach.md - Semantic vs literal validation philosophy
  • docs/gap-assessment-methodology.md - Identify, prioritize, and document gaps
  • docs/conflict-resolution-patterns.md - Strategies for resolving alignment conflicts

Templates

  • templates/alignment-report-template.md - Standard structure for alignment reports
  • templates/gap-assessment-template.md - Gap documentation template
  • templates/conflict-resolution-template.md - Conflict resolution workflow

Examples

  • examples/alignment-scenarios.md - Common scenarios and recommended fixes
  • examples/misalignment-examples.md - Real-world misalignment cases
  • examples/project-md-structure-example.md - Well-structured PROJECT.md

Integration Points

Agents

  • alignment-validator: Use checklist for quick validation
  • alignment-analyzer: Use gap assessment for detailed analysis
  • project-progress-tracker: Use GOALS validation for progress tracking

Hooks

  • validate_project_alignment.py: Use checklist for pre-commit validation
  • auto_update_project_progress.py: Use GOALS tracking patterns
  • enforce_pipeline_complete.py: Use alignment patterns for feature validation

Libraries

  • alignment_assessor.py: Use gap assessment methodology
  • project_md_updater.py: Use conflict resolution patterns
  • brownfield_retrofit.py: Use alignment checklist for retrofit analysis

Best Practices

  1. Validate Early: Check alignment before implementation, not after
  2. Document Decisions: Record why features align or don't align
  3. Update Iteratively: PROJECT.md should evolve with project understanding
  4. Prioritize Gaps: Not all gaps are critical; focus on high-impact items
  5. Semantic First: Understand intent before applying validation rules
  6. Graceful Degradation: Alignment issues are warnings, not blockers (unless critical)

Success Criteria

Feature validation is successful when:

  • ✓ Feature clearly serves at least one project goal
  • ✓ Feature is explicitly in scope (or scope updated to include it)
  • ✓ Feature respects all constraints (or constraints documented as trade-offs)
  • ✓ Feature follows architectural patterns (or deviations justified)
  • ✓ Gaps are identified, prioritized, and tracked
  • ✓ Conflicts are resolved with documented rationale

Last Updated: 2025-11-16 Version: 1.0.0 Related Skills: semantic-validation, file-organization, research-patterns, project-management

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.8%
按下载量换算61

Claude

29.47%
按下载量换算48

Cursor

19.61%
按下载量换算32

Gemini CLI

9.49%
按下载量换算15

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills