oh-my-customcode 0.85.0 → 0.86.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 +3 -3
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/skills/hada-scout/SKILL.md +92 -0
- package/templates/CLAUDE.md +1 -1
- package/templates/manifest.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
**[한국어 문서 (Korean)](./README_ko.md)**
|
|
15
15
|
|
|
16
|
-
48 agents.
|
|
16
|
+
48 agents. 105 skills. 22 rules. One command.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install -g oh-my-customcode && cd your-project && omcustom init
|
|
@@ -132,7 +132,7 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
|
|
|
132
132
|
|
|
133
133
|
---
|
|
134
134
|
|
|
135
|
-
### Skills (
|
|
135
|
+
### Skills (105)
|
|
136
136
|
|
|
137
137
|
| Category | Count | Includes |
|
|
138
138
|
|----------|-------|----------|
|
|
@@ -272,7 +272,7 @@ your-project/
|
|
|
272
272
|
├── CLAUDE.md # Entry point
|
|
273
273
|
├── .claude/
|
|
274
274
|
│ ├── agents/ # 48 agent definitions
|
|
275
|
-
│ ├── skills/ #
|
|
275
|
+
│ ├── skills/ # 105 skill modules
|
|
276
276
|
│ ├── rules/ # 22 governance rules (R000-R021)
|
|
277
277
|
│ ├── hooks/ # 15 lifecycle hook scripts
|
|
278
278
|
│ ├── schemas/ # Tool input validation schemas
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: hada-scout
|
|
3
|
+
description: hada.io RSS feed monitoring for AI agent/harness articles with automated /scout analysis
|
|
4
|
+
scope: package
|
|
5
|
+
version: 1.0.0
|
|
6
|
+
user-invocable: false
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# hada-scout
|
|
10
|
+
|
|
11
|
+
Automated pipeline that monitors hada.io (via feedburner RSS) for AI agent, harness, benchmark, and eval-related articles, then runs `/scout` analysis on each match.
|
|
12
|
+
|
|
13
|
+
## Purpose
|
|
14
|
+
|
|
15
|
+
Complement geeknews-scout with harness/eval-focused coverage from hada.io. While geeknews-scout casts a broad net over AI agent news, hada-scout narrows to benchmark/evaluation framework content — the domain most relevant to oh-my-customcode's harness and agent-eval subsystems.
|
|
16
|
+
|
|
17
|
+
## Architecture: 2-Layer Hybrid
|
|
18
|
+
|
|
19
|
+
### Layer 1 — check-feed.sh (feed → issues)
|
|
20
|
+
|
|
21
|
+
1. Fetch hada.io feedburner RSS
|
|
22
|
+
2. Filter entries by keyword regex (case-insensitive)
|
|
23
|
+
3. Dedup against existing `hada-scout` issues
|
|
24
|
+
4. Create GitHub issue per match with labels `hada-scout` + `pending-scout`
|
|
25
|
+
|
|
26
|
+
### Layer 2 — scout-runner.sh (issues → /scout)
|
|
27
|
+
|
|
28
|
+
1. Find open issues with `pending-scout` label
|
|
29
|
+
2. Extract source URL from issue body
|
|
30
|
+
3. Run `claude -p "/scout {url}"` (max 5 executions per run)
|
|
31
|
+
4. Parse verdict from /scout output
|
|
32
|
+
5. Apply verdict label, remove `pending-scout`
|
|
33
|
+
|
|
34
|
+
## Keyword Strategy
|
|
35
|
+
|
|
36
|
+
hada-scout uses harness/benchmark/eval focused keywords, distinct from geeknews-scout's broader AI agent coverage:
|
|
37
|
+
|
|
38
|
+
```
|
|
39
|
+
harness|benchmark|eval|evaluation framework|agent framework|코드 리뷰 자동화|하네스|벤치마크|평가
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Geeknews-scout handles: `Claude|Anthropic|MCP|AI agent|에이전트|agentic|multi-agent|...`
|
|
43
|
+
|
|
44
|
+
## Label Scheme
|
|
45
|
+
|
|
46
|
+
| Label | Purpose |
|
|
47
|
+
|-------|---------|
|
|
48
|
+
| `hada-scout` | Source identification — all hada-scout created issues |
|
|
49
|
+
| `pending-scout` | Awaiting /scout analysis (set by Layer 1, cleared by Layer 2) |
|
|
50
|
+
| `scout:internalize` | /scout verdict: adopt into project |
|
|
51
|
+
| `scout:integrate` | /scout verdict: use as external dependency |
|
|
52
|
+
| `scout:skip` | /scout verdict: not relevant |
|
|
53
|
+
|
|
54
|
+
## Cost Controls
|
|
55
|
+
|
|
56
|
+
- Layer 2 runs at most **5 /scout executions per cron invocation**
|
|
57
|
+
- Each /scout call costs ~$0.5–1.5 (sonnet)
|
|
58
|
+
- Remaining `pending-scout` issues are processed in the next scheduled run
|
|
59
|
+
|
|
60
|
+
## Deployment
|
|
61
|
+
|
|
62
|
+
- Pattern: same K8s CronJob structure as `infra/geeknews-scout/`
|
|
63
|
+
- Host: `ubuntu-ext` cluster
|
|
64
|
+
- Infrastructure files: `infra/hada-scout/`
|
|
65
|
+
- `check-feed.sh` — Layer 1 feed poller
|
|
66
|
+
- `scout-runner.sh` — Layer 2 /scout executor
|
|
67
|
+
- `Dockerfile`
|
|
68
|
+
- `cronjob.template.yaml`
|
|
69
|
+
- `deploy.sh`
|
|
70
|
+
- `.env.example`
|
|
71
|
+
|
|
72
|
+
## Environment Variables
|
|
73
|
+
|
|
74
|
+
| Variable | Default | Description |
|
|
75
|
+
|----------|---------|-------------|
|
|
76
|
+
| `GH_TOKEN` | (required) | GitHub PAT for issue creation |
|
|
77
|
+
| `REPO` | `baekenough/oh-my-customcode` | Target repo |
|
|
78
|
+
| `FEED_URL` | `http://feeds.feedburner.com/geeknews-feed` | hada.io RSS feed |
|
|
79
|
+
| `KEYWORDS` | (see above) | Pipe-separated keyword regex |
|
|
80
|
+
| `MAX_SCOUT_PER_RUN` | `5` | Max /scout executions per Layer 2 run |
|
|
81
|
+
|
|
82
|
+
## Integration
|
|
83
|
+
|
|
84
|
+
| Rule | How |
|
|
85
|
+
|------|-----|
|
|
86
|
+
| R009 | Layer 1 and Layer 2 run as independent CronJobs |
|
|
87
|
+
| R010 | Skill defines the architecture; implementation delegated to infra-docker-expert for K8s manifests |
|
|
88
|
+
| scout skill | Layer 2 invokes `/scout` via `claude -p` subprocess |
|
|
89
|
+
|
|
90
|
+
## Tracking Issue
|
|
91
|
+
|
|
92
|
+
GitHub Issue #841
|
package/templates/CLAUDE.md
CHANGED
|
@@ -157,7 +157,7 @@ project/
|
|
|
157
157
|
+-- CLAUDE.md # 진입점
|
|
158
158
|
+-- .claude/
|
|
159
159
|
| +-- agents/ # 서브에이전트 정의 (48 파일)
|
|
160
|
-
| +-- skills/ # 스킬 (
|
|
160
|
+
| +-- skills/ # 스킬 (105 디렉토리)
|
|
161
161
|
| +-- rules/ # 전역 규칙 (R000-R022)
|
|
162
162
|
| +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
|
|
163
163
|
| +-- contexts/ # 컨텍스트 파일 (ecomode)
|
package/templates/manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.86.0",
|
|
3
3
|
"lastUpdated": "2026-04-13T00:00:00.000Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"name": "skills",
|
|
19
19
|
"path": ".claude/skills",
|
|
20
20
|
"description": "Reusable skill modules (includes slash commands)",
|
|
21
|
-
"files":
|
|
21
|
+
"files": 105
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
24
|
"name": "guides",
|