소스 정보
- 저장소
- plurigrid/asi
- 최근 소스 활동
- 2026년 2월 16일 01:58
- 감지된 SKILL.md 언어
- 영어
- 스타
- 59
- 포크
- 13
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/plurigrid/asi --skill excellence-gradient명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Compressive Vasomotion Hypothesis (CVH) — vasomotion as a fast compression sweep that collapses ambivalent neural resonances (the Bayesian-blur problem) into a definite state. Use when modeling the ~100ms taṇhā 'grab', precision-weighting as compression forcefulness, or the generative collapse step of vasocomputational active inference.
Latched Hyperprior Hypothesis (LHH) — a sustained vascular contraction engages the smooth-muscle latch-bridge, durably freezing a circuit as a committed hyperprior isolated from global updating; unlatches when its prediction resolves. Use when modeling durable commitments, trauma/PTSD as cemented priors, latch spirals, or the cross-substrate latch (mechanical/bioelectric/immune/sheaf).
Synaptic substrate of biological active inference — long-term potentiation/depression (LTP/LTD) writes priors into synaptic weights = the learning landscape (Deep CANALs). A held vascular latch annealed long enough crystallizes into a neuron prior. Use when modeling consolidation, neuron priors, the inference→learning landscape write-path, or commit-to-disk of a held prediction.
SOC 직업 분류 기준
| name | excellence-gradient |
| description | Measure quality. Descend toward excellence. No binary gates—only vectors. |
| version | 1.0.0 |
Trit: -1 (VALIDATOR - measures, constrains, reduces toward optimum)
Quality is not a gate—it's a gradient. Binary pass/fail obscures the path to excellence. Measure everything. Descend continuously toward the minimum of the loss function: distance from ideal.
The airlock should not eat the air.
Validation exists to protect value, not consume it. If your quality gates:
Cost(validation) << Value(protected)
Time(gate) << Time(work)
Friction(process) < Momentum(team)
airlock_efficiency = value_protected / momentum_consumed
# Target: efficiency > 10x
# If < 1x: gate eats more than it saves → remove or automate
The airlock is a membrane, not a wall. It regulates flow, doesn't stop it.
| Pioneer | Contribution | Key Metric |
|---|---|---|
| Deming | 14 Points, PDCA | Variation reduction |
| Juran | Pareto principle, Quality Trilogy | Cost of poor quality |
| Ohno | Toyota Production System | Lead time, waste (muda) |
| Shingo | Poka-yoke, SMED | Defects approaching zero |
| Crosby | Zero defects, Quality is free | Price of non-conformance |
Distance from optimal. Lower is better. τ = 0 is perfection.
def excellence_temperature(metrics: dict) -> float:
"""
τ ∈ [0, ∞) where τ → 0 as quality → perfect
Analogous to simulated annealing: high τ = chaos, low τ = crystallized excellence
"""
weights = {
'coverage': 0.20, # Test coverage
'latency': 0.15, # P99 response time
'satisfaction': 0.25, # User NPS/CSAT
'debt_ratio': 0.20, # Technical debt / LOC
'defect_rate': 0.20, # Defects per KLOC
}
# Normalize each to [0,1] where 0 = optimal
τ = sum(weights[k] * distance_from_optimal(k, v)
for k, v in metrics.items())
return τ
| Metric | Formula | Target | Critical |
|---|---|---|---|
| Coverage | tested_lines / total_lines | ≥ 0.80 | < 0.60 |
| Complexity | Cyclomatic per function | ≤ 10 | > 20 |
| Duplication | dup_lines / total_lines | ≤ 0.03 | > 0.10 |
| Debt Ratio | remediation_time / dev_time | ≤ 0.05 | > 0.20 |
| Doc Coverage | documented / public_symbols | ≥ 0.90 | < 0.50 |
| Metric | Formula | Target | Critical |
|---|---|---|---|
| P50 Latency | 50th percentile | ≤ 100ms | > 500ms |
| P99 Latency | 99th percentile | ≤ 500ms | > 2000ms |
| Error Rate | errors / requests | ≤ 0.001 | > 0.01 |
| Availability | Uptime % | ≥ 99.9% | < 99.0% |
| Throughput | RPS at P99 SLO | ≥ baseline×1.2 | < baseline |
| Metric | Formula | Target | Critical |
|---|---|---|---|
| NPS | promoters - detractors | ≥ 50 | < 0 |
| CSAT | satisfied / respondents | ≥ 0.85 | < 0.70 |
| Task Success | completed / attempted | ≥ 0.95 | < 0.80 |
| Time to Value | signup → first value | ≤ 5min | > 30min |
| Churn | lost / total per period | ≤ 0.02/mo | > 0.10/mo |
| Metric | Formula | Target | Critical |
|---|---|---|---|
| TODO Count | grep -r TODO | ≤ 10 | > 100 |
| Dependency Age | avg months since update | ≤ 6 | > 24 |
| Security Vulns | CVE count (high/critical) | 0 | > 0 |
| Dead Code | unreachable / total | ≤ 0.01 | > 0.05 |
| Build Time | CI pipeline duration | ≤ 10min | > 30min |
def descend_toward_excellence(current_state: Metrics) -> Action:
"""
Not binary pass/fail. Continuous improvement via gradient.
"""
τ = excellence_temperature(current_state)
gradient = compute_gradient(current_state)
# Priority = steepest descent direction
worst_metric = max(gradient.items(), key=lambda x: x[1])
return Action(
focus=worst_metric[0],
expected_τ_reduction=worst_metric[1],
effort_estimate=effort_model(worst_metric[0])
)
def compute_gradient(state: Metrics) -> dict:
"""
∂τ/∂metric for each metric
Higher gradient = faster improvement opportunity
"""
return {
metric: partial_derivative(excellence_temperature, metric, state)
for metric in state.keys()
}
ANTI_PATTERNS = {
'god_class': lambda c: c.methods > 20 or c.lines > 500,
'feature_envy': lambda m: external_calls(m) > internal_calls(m) * 2,
'shotgun_surgery': lambda f: len(dependents(f)) > 10,
'primitive_obsession': lambda c: primitive_params(c) > 5,
'speculative_generality': lambda c: unused_abstractions(c) > 0,
'dead_code': lambda f: call_count(f) == 0 and not exported(f),
'copy_paste': lambda b: similar_blocks(b) > 2,
}
def detect_anti_patterns(codebase) -> list[Violation]:
violations = []
for name, detector in ANTI_PATTERNS.items():
for entity in codebase.entities():
if detector(entity):
violations.append(Violation(
pattern=name,
location=entity.location,
severity=PATTERN_SEVERITY[name],
fix_effort=PATTERN_EFFORT[name]
))
return sorted(violations, key=lambda v: v.severity, reverse=True)
| Anti-Pattern | Detection Signal | Response |
|---|---|---|
| Heroics | 1 person on all critical paths | Distribute knowledge |
| Scope Creep | Requirements grow > 20%/sprint | Freeze and ship |
| Gold Plating | Features beyond spec | Ship MVP, iterate |
| Analysis Paralysis | > 2 weeks without shipping | Timebox decisions |
| Bikeshedding | > 30min on trivial choices | Executive decision |
| NIH Syndrome | Rewriting solved problems | Adopt proven solutions |
# Excellence Gradient Bundle (VALIDATOR ⊗ COORDINATOR ⊗ GENERATOR = 0)
excellence-gradient (-1) ⊗ chromatic-walk (0) ⊗ refuse-mediocrity (+1) = 0 ✓ [Quality Pursuit]
excellence-gradient (-1) ⊗ unworld (0) ⊗ refuse-mediocrity (+1) = 0 ✓ [Standard Derivation]
excellence-gradient (-1) ⊗ kinetic-block (0) ⊗ refuse-mediocrity (+1) = 0 ✓ [Momentum Measure]
excellence-gradient (-1) ⊗ implicit-coordination (0) ⊗ refuse-mediocrity (+1) = 0 ✓ [Parallel Quality]
excellence-gradient (-1) ⊗ topos-catcolab (0) ⊗ refuse-mediocrity (+1) = 0 ✓ [Collaborative Excellence]
# With other generators
excellence-gradient (-1) ⊗ acsets (0) ⊗ gay-mcp (+1) = 0 ✓ [Metric Coloring]
excellence-gradient (-1) ⊗ open-games (0) ⊗ agent-o-rama (+1) = 0 ✓ [Quality Games]
excellence-gradient (-1) ⊗ cognitive-surrogate (0) ⊗ koopman-generator (+1) = 0 ✓ [Learning Dynamics]
# Compute current excellence temperature
just excellence-τ
# Run full quality audit
just quality-audit
# Detect anti-patterns
just anti-patterns
# Gradient descent: suggest next improvement
just descend
# Compare τ over time
just τ-history --days 30
#!/usr/bin/env bash
# excellence-gradient.sh
compute_excellence_temperature() {
coverage=$(just coverage-report | grep -oP '\d+\.\d+')
latency_p99=$(just latency-p99)
debt_ratio=$(just tech-debt-ratio)
defect_rate=$(just defect-rate)
# Weighted sum (lower = better)
τ=$(python3 -c "
weights = [0.25, 0.20, 0.30, 0.25]
metrics = [$((100 - coverage))/100, $latency_p99/2000, $debt_ratio, $defect_rate]
print(sum(w*m for w,m in zip(weights, metrics)))
")
echo "τ = $τ"
}
This skill is MINUS because it constrains and measures:
Without measurement, "excellence" is just opinion. With measurement, it's navigation.
Excellence = lim(t→∞) descent(τ₀, gradient, t)
Where:
- τ₀ = starting temperature
- gradient = ∇τ (direction of steepest improvement)
- t = iterations of PDCA
If you can't measure it, you can't improve it. If τ isn't decreasing, you're not improving.
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
general: 734 citations in bib.duckdbThis skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
The skill participates in triads satisfying:
(-1) + (0) + (+1) ≡ 0 (mod 3)
This ensures compositional coherence in the Cat# equipment structure.