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

philosophy-compliance-workflow哲学合规工作流程

Agent Skill

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

总安装

2,398

周安装

103

GitHub Stars

55

下载量

840
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:philosophy-compliance-workflow(哲学合规工作流程)
来源仓库:https://github.com/rysweet/amplihack
仓库路径:skills/philosophy-compliance-workflow
安装命令:
npx skills add https://github.com/rysweet/amplihack --skill philosophy-compliance-workflow
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill philosophy-compliance-workflow

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核验是否会触发联网、命令执行或文件读写操作。
  • philosophy-compliance-workflow 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Philosophy Compliance Workflow Skill

Purpose

Systematic philosophy compliance review that ensures all code and architecture aligns with amplihack's core principles: ruthless simplicity, brick philosophy, and Zen-like minimalism. This skill validates that implementations serve clear purposes without unnecessary complexity.

When to Use This Skill

USE FOR:

  • Architecture reviews before implementation
  • Code reviews for philosophy alignment
  • Refactoring validation (did we actually simplify?)
  • Module design verification
  • Pre-merge philosophy checks
  • Identifying over-engineering and complexity creep

AVOID FOR:

  • Functional bug fixes (not philosophy issues)
  • Performance optimization alone
  • Documentation updates
  • Pure syntax/style issues

Core Philosophy Principles

The Zen of Simple Code

  • Each line serves a clear purpose without embellishment
  • As simple as possible, but no simpler
  • Complex systems from simple, well-defined components
  • Handle what's needed now, not hypothetical futures

The Brick Philosophy

  • A brick = Self-contained module with ONE clear responsibility
  • A stud = Public contract (functions, API, data model) others connect to
  • Regeneratable = Can be rebuilt from spec without breaking connections
  • Isolated = All code, tests, fixtures inside the module's folder

Ruthless Simplicity

  • Start with the simplest solution that works
  • Add complexity only when justified
  • Question every abstraction
  • Code you don't write has no bugs

Review Process

Step 1: Scope Identification

Identify what to review:

  • Single module, multiple modules, or full architecture
  • Recent changes or complete codebase
  • Specific complexity concerns or general review

Questions to ask:

  • What triggered this review?
  • What are the main concerns?
  • What's the expected outcome?

Step 2: Initial Analysis

Scan the code structure:

  • Module organization and boundaries
  • Public interfaces (the "studs")
  • Dependencies and coupling
  • Abstraction layers
  • Configuration complexity

Red flags to watch for:

  • Multiple responsibilities in one module
  • Unclear module boundaries
  • Deep inheritance hierarchies
  • Generic "framework" code
  • Future-proofing for hypothetical needs

Step 3: Philosophy Questions

Ask the 5 core questions for each component:

  1. Necessity: "Do we actually need this right now?"

- Is this solving a real problem today? - Or is it future-proofing for "maybe someday"?

  1. Simplicity: "What's the simplest way to solve this problem?"

- Can we remove layers? - Is there a more direct approach?

  1. Modularity: "Can this be a self-contained brick?"

- Does it have ONE clear responsibility? - Are the connection points (studs) obvious?

  1. Regenerability: "Can AI rebuild this from a specification?"

- Is the contract clear enough? - Are dependencies well-defined?

  1. Value: "Does the complexity add proportional value?"

- What would break if we simplified this? - Is the trade-off justified?

Step 4: Identify Violations

Categorize issues by severity:

CRITICAL (Must Fix):

  • Multiple responsibilities in one module
  • Circular dependencies
  • Unclear public contracts
  • Non-regeneratable designs
  • Tight coupling preventing module replacement

WARNING (Should Fix):

  • Premature optimizations
  • Excessive configuration options
  • Unnecessary abstractions
  • Generic "framework" patterns
  • Future-proofing without current need

SUGGESTION (Consider):

  • Opportunities for simplification
  • Alternative approaches with fewer dependencies
  • Ways to flatten abstraction layers
  • Module boundary improvements

Step 5: Generate Review Report

Create structured review output:

# Philosophy Compliance Review: [Component Name]

## Overall Score: [A/B/C/D/F]

## Summary

[One paragraph overview of findings]

## Strengths (What Aligns)

- [Philosophy-aligned patterns identified]
- [Well-implemented brick designs]
- [Clear simplicity examples]

## Concerns (Warnings)

- [Complexity that should be addressed]
- [Borderline philosophy violations]
- [Opportunities for improvement]

## Violations (Critical Issues)

- [Clear departures from philosophy]
- [Must-fix problems]
- [Blocking issues for philosophy compliance]

## Recommendations

### Immediate Actions (Critical)

1. [Specific fix required with rationale]
2. [Another critical fix]

### Structural Improvements (Important)

1. [Module boundary adjustments]
2. [Decoupling suggestions]

### Simplification Opportunities (Good to Have)

1. [Ways to reduce complexity]
2. [Abstraction removal suggestions]

## Regeneration Assessment

**Can AI rebuild these components from specifications?**

- Module A: [Ready/Needs Work] - [Specific reason]
- Module B: [Ready/Needs Work] - [Specific reason]

**What's blocking regeneration:**

- [List specific issues preventing clear AI regeneration]

## Philosophy Alignment Score

- Ruthless Simplicity: [0-10]/10 - [Rationale]
- Brick Philosophy: [0-10]/10 - [Rationale]
- Zen Minimalism: [0-10]/10 - [Rationale]

**Overall: [Score]/10**

Step 6: Provide Actionable Guidance

For each violation, provide:

  • Clear explanation of the problem
  • Why it violates philosophy
  • Specific fix recommendation
  • Expected improvement from fix
  • Priority (Critical/Important/Nice-to-have)

Example:

Issue: SessionManager class has 8 different responsibilities
Violation: Breaks single responsibility (brick philosophy)
Fix: Split into:
  - SessionStore (persistence only)
  - SessionValidator (validation only)
  - SessionLifecycle (creation/expiry only)
Impact: Each brick becomes regeneratable and testable independently
Priority: Critical

Philosophy Scoring Rubric

Ruthless Simplicity (0-10)

  • 10: Every component serves clear purpose, minimal complexity
  • 8-9: Generally simple with minor complexity creep
  • 6-7: Some unnecessary abstractions or future-proofing
  • 4-5: Significant over-engineering present
  • 0-3: Complex beyond necessity, hard to understand

Brick Philosophy (0-10)

  • 10: All modules self-contained with clear single responsibility
  • 8-9: Most modules follow brick pattern with minor coupling
  • 6-7: Some unclear boundaries or multiple responsibilities
  • 4-5: Significant coupling and unclear contracts
  • 0-3: Monolithic or tightly coupled, not regeneratable

Zen Minimalism (0-10)

  • 10: Embraces simplicity, handles only current needs
  • 8-9: Mostly minimal with some extra features
  • 6-7: Some hypothetical futures addressed unnecessarily
  • 4-5: Considerable future-proofing and "just in case" code
  • 0-3: Over-engineered for "maybe someday" scenarios

Overall Grade

  • A (9-10): Excellent philosophy alignment
  • B (7-8): Good with minor improvements needed
  • C (5-6): Acceptable but needs attention
  • D (3-4): Poor alignment, significant refactoring needed
  • F (0-2): Critical philosophy violations throughout

Green Patterns (Examples of Good Design)

Philosophy-Aligned Designs:

  • Single-responsibility modules with clear purpose
  • Self-contained directories with all code and tests
  • Obvious public interfaces (studs) for connections
  • Direct, straightforward implementations
  • Minimal dependencies (preferring standard library)

Example: Good Brick Module

authentication/
├── __init__.py        # Exports: authenticate, validate_token
├── core.py           # Implementation (one responsibility)
├── models.py         # User, Token (clear data models)
├── tests/
│   └── test_core.py  # Comprehensive tests
└── README.md         # Regeneration specification

Public Contract (Studs):
- authenticate(username, password) -> Token
- validate_token(token) -> User

One Responsibility: Authentication only (not authorization, not user management)
Regeneratable: Yes, from README.md specification

Red Patterns (Examples to Avoid)

Philosophy Violations:

  • God objects with multiple responsibilities
  • Abstract base classes without clear justification
  • Complex configuration systems for simple features
  • Generic "flexible" frameworks
  • Premature performance optimizations

Example: Bad Design

user_system/
├── framework.py          # Generic abstraction layer
├── manager.py            # UserManager does everything
├── config/               # Extensive config system
├── plugins/              # Plugin architecture (unused)
└── adapters/             # Future-proofing for other DBs

Problems:
- UserManager handles auth, profile, settings, notifications
- Framework adds complexity without current value
- Plugin system built for "maybe someday"
- Multiple responsibilities, not regeneratable

Integration with Other Workflows

When to combine philosophy review with:

  • After Builder: Validate implemented code follows philosophy
  • Before Architect: Ensure design specs embrace simplicity
  • During Reviewer: Include philosophy as review criteria
  • With Cleanup: Identify what to simplify/remove

Default workflow position:

  • Architecture Phase: Before implementation starts
  • Code Review Phase: After implementation, before merge
  • Refactoring Phase: Validate simplification efforts

Key Mantras

  • "It's easier to add complexity later than to remove it"
  • "Code you don't write has no bugs"
  • "Favor clarity over cleverness"
  • "The best code is often the simplest"
  • "Modules should be bricks: self-contained and regeneratable"
  • "Do we need this NOW, or are we future-proofing?"
  • "What's the simplest thing that could possibly work?"

Common Pitfalls

Disguised Complexity:

  • "This makes it flexible" → Often means over-engineered
  • "We might need this later" → Future-proofing without current need
  • "This is more generic" → Generic often means complex
  • "Industry best practice" → May not apply to your scale

Philosophy Traps:

  • Adding abstraction layers "just in case"
  • Building frameworks for single use cases
  • Creating plugin systems before needing plugins
  • Optimizing before measuring performance
  • Designing for hypothetical scale

Success Criteria

A successful philosophy review:

  • Identifies all critical philosophy violations
  • Provides actionable fix recommendations
  • Explains why violations matter
  • Scores components objectively
  • Validates regeneration readiness
  • Celebrates philosophy-aligned patterns
  • Guides team toward simpler designs

Output Artifacts

Generated documents:

  • Philosophy review report (markdown)
  • Action items with priorities
  • Before/after comparison (if fixes applied)
  • Regeneration assessment per module

Where to save:

  • ~/.amplihack/.claude/runtime/logs/<session>/philosophy_review_<timestamp>.md
  • Link in commit message if fixes applied
  • Store patterns learned in memory using store_discovery() from amplihack.memory.discoveries

Remember

You are the philosophical conscience of the system. Challenge complexity, celebrate simplicity, and ensure every architectural decision moves toward the Zen ideal of elegant, essential software.

Your goal is not perfection - it's continuous improvement toward simpler, clearer, more regeneratable code.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.94%
按下载量换算251

Antigravity

20.68%
按下载量换算174

OpenCode

16.96%
按下载量换算142

Gemini CLI

11.76%
按下载量换算99

windsurf

8.39%
按下载量换算70

Cursor

3.53%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills