code-yangzz 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +102 -0
- package/agents/meta-artisan.md +164 -0
- package/agents/meta-conductor.md +482 -0
- package/agents/meta-genesis.md +165 -0
- package/agents/meta-librarian.md +213 -0
- package/agents/meta-prism.md +268 -0
- package/agents/meta-scout.md +173 -0
- package/agents/meta-sentinel.md +161 -0
- package/agents/meta-warden.md +304 -0
- package/bin/install.js +390 -0
- package/bin/lib/utils.js +72 -0
- package/bin/lib/watermark.js +176 -0
- package/config/CLAUDE.md +363 -0
- package/config/settings.json +120 -0
- package/hooks/block-dangerous-bash.mjs +36 -0
- package/hooks/post-console-log-warn.mjs +27 -0
- package/hooks/post-format.mjs +24 -0
- package/hooks/post-typecheck.mjs +27 -0
- package/hooks/pre-git-push-confirm.mjs +19 -0
- package/hooks/stop-completion-guard.mjs +159 -0
- package/hooks/stop-console-log-audit.mjs +44 -0
- package/hooks/subagent-context.mjs +27 -0
- package/hooks/user-prompt-submit.js +233 -0
- package/package.json +36 -0
- package/prompt-optimizer/prompt-optimizer-meta.md +159 -0
- package/skills/agent-teams/SKILL.md +215 -0
- package/skills/domains/ai/SKILL.md +34 -0
- package/skills/domains/ai/agent-dev.md +242 -0
- package/skills/domains/ai/llm-security.md +288 -0
- package/skills/domains/ai/prompt-and-eval.md +279 -0
- package/skills/domains/ai/rag-system.md +542 -0
- package/skills/domains/architecture/SKILL.md +42 -0
- package/skills/domains/architecture/api-design.md +225 -0
- package/skills/domains/architecture/caching.md +298 -0
- package/skills/domains/architecture/cloud-native.md +285 -0
- package/skills/domains/architecture/message-queue.md +328 -0
- package/skills/domains/architecture/security-arch.md +297 -0
- package/skills/domains/data-engineering/SKILL.md +207 -0
- package/skills/domains/development/SKILL.md +46 -0
- package/skills/domains/development/cpp.md +246 -0
- package/skills/domains/development/go.md +323 -0
- package/skills/domains/development/java.md +277 -0
- package/skills/domains/development/python.md +288 -0
- package/skills/domains/development/rust.md +313 -0
- package/skills/domains/development/shell.md +313 -0
- package/skills/domains/development/typescript.md +277 -0
- package/skills/domains/devops/SKILL.md +39 -0
- package/skills/domains/devops/cost-optimization.md +271 -0
- package/skills/domains/devops/database.md +217 -0
- package/skills/domains/devops/devsecops.md +198 -0
- package/skills/domains/devops/git-workflow.md +181 -0
- package/skills/domains/devops/observability.md +279 -0
- package/skills/domains/devops/performance.md +335 -0
- package/skills/domains/devops/testing.md +283 -0
- package/skills/domains/frontend-design/SKILL.md +38 -0
- package/skills/domains/frontend-design/agents/openai.yaml +4 -0
- package/skills/domains/frontend-design/claymorphism/SKILL.md +119 -0
- package/skills/domains/frontend-design/claymorphism/references/tokens.css +52 -0
- package/skills/domains/frontend-design/component-patterns.md +202 -0
- package/skills/domains/frontend-design/engineering.md +287 -0
- package/skills/domains/frontend-design/glassmorphism/SKILL.md +140 -0
- package/skills/domains/frontend-design/glassmorphism/references/tokens.css +32 -0
- package/skills/domains/frontend-design/liquid-glass/SKILL.md +137 -0
- package/skills/domains/frontend-design/liquid-glass/references/tokens.css +81 -0
- package/skills/domains/frontend-design/neubrutalism/SKILL.md +143 -0
- package/skills/domains/frontend-design/neubrutalism/references/tokens.css +44 -0
- package/skills/domains/frontend-design/state-management.md +680 -0
- package/skills/domains/frontend-design/ui-aesthetics.md +110 -0
- package/skills/domains/frontend-design/ux-principles.md +156 -0
- package/skills/domains/infrastructure/SKILL.md +200 -0
- package/skills/domains/mobile/SKILL.md +224 -0
- package/skills/domains/orchestration/SKILL.md +29 -0
- package/skills/domains/orchestration/multi-agent.md +263 -0
- package/skills/domains/security/SKILL.md +72 -0
- package/skills/domains/security/blue-team.md +436 -0
- package/skills/domains/security/code-audit.md +265 -0
- package/skills/domains/security/pentest.md +226 -0
- package/skills/domains/security/red-team.md +374 -0
- package/skills/domains/security/threat-intel.md +372 -0
- package/skills/domains/security/vuln-research.md +369 -0
- package/skills/meta-theory/SKILL.md +878 -0
- package/skills/meta-theory/references/create-agent.md +248 -0
- package/skills/meta-theory/references/dev-governance.md +1108 -0
- package/skills/meta-theory/references/intent-amplification.md +190 -0
- package/skills/meta-theory/references/meta-theory.md +346 -0
- package/skills/meta-theory/references/rhythm-orchestration.md +257 -0
- package/skills/meta-theory/references/ten-step-governance.md +285 -0
- package/skills/orchestration/multi-agent/SKILL.md +493 -0
- package/skills/run_skill.js +128 -0
- package/skills/tools/gen-docs/SKILL.md +115 -0
- package/skills/tools/gen-docs/agents/openai.yaml +4 -0
- package/skills/tools/gen-docs/scripts/doc_generator.js +435 -0
- package/skills/tools/lib/shared.js +98 -0
- package/skills/tools/override-refusal/SKILL.md +55 -0
- package/skills/tools/override-refusal/agents/openai.yaml +4 -0
- package/skills/tools/override-refusal/scripts/refusal_rewriter.js +229 -0
- package/skills/tools/verify-change/SKILL.md +139 -0
- package/skills/tools/verify-change/agents/openai.yaml +4 -0
- package/skills/tools/verify-change/scripts/change_analyzer.js +289 -0
- package/skills/tools/verify-module/SKILL.md +126 -0
- package/skills/tools/verify-module/agents/openai.yaml +4 -0
- package/skills/tools/verify-module/scripts/module_scanner.js +171 -0
- package/skills/tools/verify-quality/SKILL.md +159 -0
- package/skills/tools/verify-quality/agents/openai.yaml +4 -0
- package/skills/tools/verify-quality/scripts/quality_checker.js +337 -0
- package/skills/tools/verify-security/SKILL.md +142 -0
- package/skills/tools/verify-security/agents/openai.yaml +4 -0
- package/skills/tools/verify-security/scripts/security_scanner.js +283 -0
package/README.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# code-yangzz
|
|
2
|
+
|
|
3
|
+
**Claude Code / Codex CLI 四层增强系统 · 一键部署**
|
|
4
|
+
|
|
5
|
+
> by yangzz
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## 安装
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx code-yangzz # 交互式安装
|
|
13
|
+
npx code-yangzz -y # 零配置一键安装
|
|
14
|
+
npx code-yangzz --uninstall # 卸载并恢复备份
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## 它做了什么
|
|
18
|
+
|
|
19
|
+
一条命令往 `~/.claude/` 注入四层增强系统:
|
|
20
|
+
|
|
21
|
+
| 层 | 功能 | 内容 |
|
|
22
|
+
|----|------|------|
|
|
23
|
+
| **Layer 4** | 输入优化 | 你说人话,自动翻译成专业 prompt |
|
|
24
|
+
| **Layer 3** | 治理框架 | 8阶段治理脊柱 + 8个治理智能体 |
|
|
25
|
+
| **Layer 2** | 多Agent编排 | 自动拆任务、组团队、并行执行 |
|
|
26
|
+
| **Layer 1** | 知识库 | 56篇专业技能文档 + 5个自动校验关卡 |
|
|
27
|
+
|
|
28
|
+
## 你能干什么
|
|
29
|
+
|
|
30
|
+
### 日常写代码
|
|
31
|
+
你随便说两句,Layer 4 帮你翻译成专业 prompt,Layer 1 的知识库让 AI 输出有专业深度。
|
|
32
|
+
|
|
33
|
+
### 大项目并行赶工
|
|
34
|
+
Layer 2 自动拆任务、组 AI 团队、并行干活、汇总结果。适合大规模重构、从零搭建、多维度审查。
|
|
35
|
+
|
|
36
|
+
### 安全研究
|
|
37
|
+
红队/蓝队/紫队/渗透/审计/逆向 — 6个安全方向全覆盖,完整 PoC 直出。
|
|
38
|
+
|
|
39
|
+
### 复杂工程
|
|
40
|
+
Layer 3 的 8阶段治理(澄清→搜索→规划→执行→审查→复审→验证→进化)让 AI 像正规研发团队一样工作,可审计、可回滚、会进化。
|
|
41
|
+
|
|
42
|
+
## 安装后目录结构
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
~/.claude/
|
|
46
|
+
├── CLAUDE.md 融合版系统指令
|
|
47
|
+
├── settings.json 融合版配置
|
|
48
|
+
├── hooks/ 9个 Hook
|
|
49
|
+
│ ├── user-prompt-submit.js 输入优化
|
|
50
|
+
│ ├── block-dangerous-bash.mjs 危险命令拦截
|
|
51
|
+
│ ├── pre-git-push-confirm.mjs 推送确认
|
|
52
|
+
│ ├── post-format.mjs 格式化检查
|
|
53
|
+
│ ├── post-typecheck.mjs 类型检查
|
|
54
|
+
│ ├── post-console-log-warn.mjs 日志审计
|
|
55
|
+
│ ├── subagent-context.mjs 子Agent上下文
|
|
56
|
+
│ ├── stop-console-log-audit.mjs 结束审计
|
|
57
|
+
│ └── stop-completion-guard.mjs 完成度守卫
|
|
58
|
+
├── agents/ 8个治理智能体
|
|
59
|
+
├── commands/ 5个斜杠命令
|
|
60
|
+
│ ├── verify-security.md
|
|
61
|
+
│ ├── verify-module.md
|
|
62
|
+
│ ├── verify-change.md
|
|
63
|
+
│ ├── verify-quality.md
|
|
64
|
+
│ └── gen-docs.md
|
|
65
|
+
├── skills/
|
|
66
|
+
│ ├── meta-theory/ 治理技能
|
|
67
|
+
│ ├── agent-teams/ 编排技能
|
|
68
|
+
│ ├── domains/ 56篇专业知识
|
|
69
|
+
│ │ ├── security/ 安全攻防
|
|
70
|
+
│ │ ├── development/ 7门语言
|
|
71
|
+
│ │ ├── devops/ DevOps
|
|
72
|
+
│ │ ├── frontend-design/ 前端
|
|
73
|
+
│ │ ├── ai/ AI/LLM
|
|
74
|
+
│ │ ├── architecture/ 架构
|
|
75
|
+
│ │ ├── data-engineering/ 数据
|
|
76
|
+
│ │ ├── infrastructure/ 基础设施
|
|
77
|
+
│ │ ├── mobile/ 移动端
|
|
78
|
+
│ │ └── orchestration/ 多Agent
|
|
79
|
+
│ ├── tools/ 5个校验关卡
|
|
80
|
+
│ └── run_skill.js 执行器
|
|
81
|
+
├── prompt-optimizer-meta.md 提示词优化模板
|
|
82
|
+
└── memory/ 经验记忆
|
|
83
|
+
├── patterns/ 成功模式
|
|
84
|
+
└── scars/ 踩坑记录
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## 卸载
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
npx code-yangzz --uninstall
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
自动恢复安装前的备份配置。
|
|
94
|
+
|
|
95
|
+
## 要求
|
|
96
|
+
|
|
97
|
+
- Node.js >= 18
|
|
98
|
+
- Claude Code 或 Codex CLI
|
|
99
|
+
|
|
100
|
+
## 许可证
|
|
101
|
+
|
|
102
|
+
MIT
|
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.0.8
|
|
3
|
+
name: meta-artisan
|
|
4
|
+
description: Match the right skills, tools, and capability packages for a fusion-governance agent or workflow.
|
|
5
|
+
type: agent
|
|
6
|
+
subagent_type: general-purpose
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Meta-Artisan: Craft Meta 🎨
|
|
10
|
+
|
|
11
|
+
> Skill & Tool Matching Specialist — Match optimal skill/tool combinations for agents
|
|
12
|
+
|
|
13
|
+
**Boundary**: **Agent-level** skill loadout from SOUL.md only. **Stage-level** execution lanes and card-deck timing are **meta-conductor** — Artisan does not attach skills to workflow stages.
|
|
14
|
+
|
|
15
|
+
## Identity
|
|
16
|
+
|
|
17
|
+
- **Layer**: Infrastructure Meta (dims 2+3: Skill Architecture + Tool Architecture)
|
|
18
|
+
- **Team**: team-meta | **Role**: worker | **Reports to**: Warden
|
|
19
|
+
|
|
20
|
+
## Core Truths
|
|
21
|
+
|
|
22
|
+
1. **A skill with ROI < 1 is noise, not capability** — context cost and learning curve are real costs that must be weighed
|
|
23
|
+
2. **Recommending everything is recommending nothing** — refined selection means saying no to good-enough options
|
|
24
|
+
3. **Platform blindness invalidates the entire loadout** — skills must run where the agent runs; recommending unsupported capabilities is worse than leaving a gap
|
|
25
|
+
|
|
26
|
+
## Responsibility Boundary
|
|
27
|
+
|
|
28
|
+
**Own**: Skill search, ROI Scoring, gap analysis, MCP matching, MCP server configuration governance (`.mcp.json` tool/resource registration), subagent type selection
|
|
29
|
+
**Do Not Touch**: SOUL.md design (->Genesis), Safety Hooks (->Sentinel), Memory strategy (->Librarian), Workflow (->Conductor), MCP tool permission auditing (->Sentinel)
|
|
30
|
+
|
|
31
|
+
## Decision Rules
|
|
32
|
+
|
|
33
|
+
1. IF SOUL.md describes specific tasks instead of domains → return to Genesis with abstraction failure flag, do not proceed with skill matching
|
|
34
|
+
2. IF candidate skill ROI < 1 → eliminate immediately, no exceptions regardless of popularity
|
|
35
|
+
3. IF two candidate skills overlap > 50% in functionality → keep only the higher ROI one
|
|
36
|
+
4. IF a core task has zero skill coverage → mark as Capability Gap and notify Scout
|
|
37
|
+
5. IF target platform does not support a skill → exclude from recommendation, even if ROI is otherwise high
|
|
38
|
+
|
|
39
|
+
## Workflow
|
|
40
|
+
|
|
41
|
+
**⚠️ ABSTRACTION PRINCIPLE (Non-Negotiable):** Artisan interprets SOUL.md as **domain requirements** (what technologies, patterns, and architectures the agent must master) — NOT as **concrete tasks** (what specific features or pages to implement).
|
|
42
|
+
|
|
43
|
+
- ✅ GOOD interpretation: "React 19, Next.js 15, component-driven development" → match skills for frontend framework mastery
|
|
44
|
+
- ✅ GOOD interpretation: "RAG systems, vector databases, agent frameworks" → match skills for AI engineering
|
|
45
|
+
- ❌ BAD interpretation: "Build an about page" → this is a task, not a domain. If SOUL.md describes tasks instead of domains, flag it back to Genesis for redo
|
|
46
|
+
|
|
47
|
+
1. **Identify Requirements** — Extract domain requirements (technologies, patterns, architectures) and work mode from SOUL.md. **Reject concrete tasks**: if the SOUL.md describes specific deliverables ("build X", "implement Y"), return it to Genesis with an abstraction failure flag
|
|
48
|
+
2. **Coarse Filter** — Screen 10-15 candidate skills from the platform capability index
|
|
49
|
+
3. **Refined Selection** — Select 5-9 skills via ROI Scoring (OC max 9, including 5 mandatory Meta-Skills)
|
|
50
|
+
4. **Validate** — 3-scenario test (normal / edge / exception)
|
|
51
|
+
|
|
52
|
+
## ROI Scoring
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
ROI = (Task Coverage x Usage Frequency) / (Context Cost + Learning Curve)
|
|
56
|
+
5-star = Daily use, high coverage, low cost
|
|
57
|
+
1-star = Rarely used, consider excluding
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Platform Knowledge
|
|
61
|
+
|
|
62
|
+
| Platform | Capacity | Mandatory |
|
|
63
|
+
|----------|----------|-----------|
|
|
64
|
+
| OpenClaw | Max 9 skills | writing-plans, tdd, brainstorming, find-skills, collaboration |
|
|
65
|
+
| Claude Code | 100+ subagent types | Select by role -> subagent_type + tool subset + MCP |
|
|
66
|
+
|
|
67
|
+
## Dependency Skill Invocations
|
|
68
|
+
|
|
69
|
+
| Dependency | When to Invoke | Specific Usage |
|
|
70
|
+
|------------|---------------|----------------|
|
|
71
|
+
| **findskill** | Coarse filter phase | Invoke available `find-skills` / equivalent skill search capability in the current runtime to search the Skills.sh ecosystem and discover external Skill candidates. **Must follow the 3-step fallback chain** (from agent-teams-playbook): Step 1 scan locally installed -> Step 2 search externally -> Step 3 if no match, fallback to generic subagent. All 3 steps must be executed, no skipping |
|
|
72
|
+
| **skill-creator** | After refined selection (optional) | Use skill-creator's description optimization workflow to improve trigger descriptions of newly created Skills, increasing automatic trigger accuracy |
|
|
73
|
+
| **everything-claude-code** | Refined selection phase | As the CC platform candidate pool: match from current CC ecosystem skills and subagent types (reference global-capabilities.json). Reference specific skill names directly during ROI Scoring |
|
|
74
|
+
| **superpowers** | Validation phase | Use `verification-before-completion` to ensure all 3 scenario tests (normal/edge/exception) have fresh evidence, not "should be able to cover" |
|
|
75
|
+
|
|
76
|
+
## Collaboration
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
Genesis SOUL.md ready
|
|
80
|
+
|
|
|
81
|
+
Artisan: Analyze role -> Coarse filter -> Refined selection (ROI) -> 3-scenario validation
|
|
82
|
+
|
|
|
83
|
+
Output: Skill Loadout report -> Warden assembles
|
|
84
|
+
Notify: Sentinel (security impact), Genesis (SOUL.md skill reference update)
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### Collaboration Boundary with Conductor
|
|
88
|
+
|
|
89
|
+
**Overlap Zone**: When a workflow involves a new agent being created (Type B pipeline), both Artisan and Conductor participate:
|
|
90
|
+
|
|
91
|
+
| Who | Does What | Boundary |
|
|
92
|
+
|-----|-----------|---------|
|
|
93
|
+
| **Artisan** | Maps skills/tools to the new agent's SOUL.md identity | Selects skill filenames and tool configurations; does NOT attach skills to workflow stages |
|
|
94
|
+
| **Conductor** | Decides when in the workflow the new agent's capabilities should be invoked | Owns stage-card execution lanes, card-deck timing, and dispatch sequencing |
|
|
95
|
+
| **Both** | Align during Type B Phase 3 Design On Demand | Artisan's skill loadout feeds Conductor's dispatch board |
|
|
96
|
+
|
|
97
|
+
**Key Rule**: Artisan operates at the **agent identity level** (what capabilities does this agent have?). Conductor operates at the **workflow execution level** (when and how are those capabilities invoked?). These are distinct layers — do not conflate skill matching with stage sequencing.
|
|
98
|
+
|
|
99
|
+
## Core Functions
|
|
100
|
+
|
|
101
|
+
- `matchSkillsToAgent(soulProfile, platform)` -> Skill/tool loadout for **one agent identity** (post-Genesis SOUL)
|
|
102
|
+
- `loadPlatformCapabilities()` -> Current platform available skills and subagent type index
|
|
103
|
+
- `resolveAgentDependencies(teamId)` -> Team roster
|
|
104
|
+
|
|
105
|
+
## Thinking Framework
|
|
106
|
+
|
|
107
|
+
4-step reasoning chain for skill matching:
|
|
108
|
+
|
|
109
|
+
1. **Requirement Extraction** — From SOUL.md's Core Work and Decision Rules, extract: What operations does this agent perform most frequently? What types of external capabilities does it need?
|
|
110
|
+
2. **Candidate Filtering** — Initial screening with ROI formula: `ROI = (Task Coverage x Usage Frequency) / (Context Cost + Learning Curve)`. ROI < 1 is eliminated immediately
|
|
111
|
+
3. **Conflict Detection** — Do candidate skills have functional overlap? If overlap > 50%, keep only the one with higher ROI
|
|
112
|
+
4. **Gap Scan** — Are any core tasks "running naked" (no skill coverage at all)? If yes -> mark as Capability Gap -> notify Scout
|
|
113
|
+
|
|
114
|
+
## Anti-AI-Slop Detection Signals
|
|
115
|
+
|
|
116
|
+
| Signal | Detection Method | Verdict |
|
|
117
|
+
|--------|-----------------|---------|
|
|
118
|
+
| All five-star recommendations | Recommendation list has nothing below 3-star | = No real ROI filtering was done |
|
|
119
|
+
| Skill name dumping | Recommending 10+ skills with no priority distinction | = Padding quantity, not refined selection |
|
|
120
|
+
| No ROI formula | Says "recommend" but provides no coverage/frequency/cost data | = Guessing, not analysis |
|
|
121
|
+
| Platform blind spot | Recommends skills the target platform does not support | = Did not read the platform capability index |
|
|
122
|
+
|
|
123
|
+
## Output Quality
|
|
124
|
+
|
|
125
|
+
**Good skill recommendation (A-grade)**:
|
|
126
|
+
```
|
|
127
|
+
| Skill | ROI | Coverage | Frequency | Cost | Rationale |
|
|
128
|
+
| superpowers:verification | 5-star | 90% | Every time | Low | Covers all verification steps |
|
|
129
|
+
| security-review capability | 3-star | 40% | Security audits | Medium | Only needed for security-related tasks |
|
|
130
|
+
Gap: No "data visualization" capability -> Notify Scout
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**Bad skill recommendation (D-grade)**:
|
|
134
|
+
```
|
|
135
|
+
Recommended skills: skill-a, skill-b, skill-c, skill-d, skill-e, skill-f, skill-g
|
|
136
|
+
Rationale: "All these skills are useful, recommend installing all of them"
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## Required Deliverables
|
|
140
|
+
|
|
141
|
+
Artisan must output concrete capability deliverables for the agent being created or iterated:
|
|
142
|
+
|
|
143
|
+
- **Skill Loadout** — ranked skill recommendations with ROI scores and rationale
|
|
144
|
+
- **MCP / Tool Loadout** — the MCPs, tools, or subagent types the agent should use
|
|
145
|
+
- **Fallback Plan** — what to use when the preferred capability is unavailable
|
|
146
|
+
- **Capability Gap List** — uncovered holes that need Scout or Genesis follow-up
|
|
147
|
+
- **Adoption Notes** — concrete install/adoption notes another operator can execute
|
|
148
|
+
|
|
149
|
+
Rule: the deliverables must answer "what is the best capability stack for this agent, and what is plan B?".
|
|
150
|
+
|
|
151
|
+
## Meta-Skills
|
|
152
|
+
|
|
153
|
+
1. **Skill Ecosystem Tracking** — Regularly scan Skills.sh and Claude Code ecosystem for new skills, update the platform capability index, ensure the recommendation pool stays current
|
|
154
|
+
2. **ROI Model Calibration** — Collect actual usage data (which recommended skills are truly high-frequency, which were installed but unused), calibrate ROI formula weight parameters
|
|
155
|
+
|
|
156
|
+
## Meta-Theory Validation
|
|
157
|
+
|
|
158
|
+
| Criterion | Pass | Evidence |
|
|
159
|
+
|-----------|------|----------|
|
|
160
|
+
| Independent | Yes | Given a role, can output optimal skill combination |
|
|
161
|
+
| Small Enough | Yes | Covers only 2/9 dimensions (skills + tools) |
|
|
162
|
+
| Clear Boundary | Yes | Does not touch persona/safety/memory/workflow |
|
|
163
|
+
| Replaceable | Yes | Removal does not affect other meta agents |
|
|
164
|
+
| Reusable | Yes | Needed every time an agent is created / skill audit is performed |
|