kodelyth-ecc 1.7.3 → 1.7.4
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/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +41 -0
- package/.github/ISSUE_TEMPLATE/good_first_issue.md +36 -0
- package/CHANGELOG.md +39 -0
- package/GITHUB_SETUP.md +553 -0
- package/README.md +51 -6
- package/VERSION +1 -1
- package/actions/ecc-review/README.md +7 -7
- package/bundles/enterprise.md +1 -1
- package/bundles/indie-hacker.md +1 -1
- package/bundles/red-team.md +1 -1
- package/docs/supply-chain.md +1 -1
- package/package.json +4 -1
- package/rules/common/memory-protocol.md +35 -4
- package/scripts/dashboard/data.js +261 -4
- package/scripts/dashboard/server.js +28 -3
- package/scripts/dashboard/static/index.html +63 -3
- package/social/card-install.svg +1 -1
- package/social/card-main.svg +2 -2
- package/social/facebook-v150.svg +4 -4
- package/social/github-social-preview.svg +3 -3
- package/social/hype-compound-learning.svg +117 -0
- package/social/hype-devil-mode.svg +228 -0
- package/social/hype-mcp-server.svg +136 -0
- package/social/hype-parallel-agents.svg +150 -0
- package/social/hype-stats-hero.svg +126 -0
- package/social/readme-hero.svg +4 -4
- package/social/section-mcp.svg +1 -1
- package/social/twitter-threads.md +621 -0
- package/social/x-card-agents-grid.svg +2 -2
- package/social/x-card-free.svg +2 -2
- package/social/x-card-hook.svg +5 -5
- package/tests/dashboard/data.test.js +156 -0
- package/tests/dashboard/server.test.js +17 -0
- package/wiki/FAQ.md +1 -1
- package/wiki/Home.md +5 -3
- package/wiki/Installation-Guide.md +2 -2
- package/MARKETING_PLAN.md +0 -893
- package/cat +0 -0
- package/social/facebook-group/POST.md +0 -121
- package/social/facebook-group/fb-1-3am-debug.png +0 -0
- package/social/facebook-group/fb-1-3am-debug.svg +0 -97
- package/social/facebook-group/fb-2-cpu-upgrade.png +0 -0
- package/social/facebook-group/fb-2-cpu-upgrade.svg +0 -132
- package/social/facebook-group/fb-3-before-after.png +0 -0
- package/social/facebook-group/fb-3-before-after.svg +0 -94
- package/videos/README.md +0 -88
- package/videos/video-01-install-and-routing.md +0 -258
- package/videos/video-02-compound-memory.md +0 -301
- package/videos/video-03-devil-mode.md +0 -294
- package/videos/video-04-mcp-server.md +0 -391
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: Ask a question / discuss
|
|
4
|
+
url: https://github.com/sifxprime/kodelyth-ecc/discussions
|
|
5
|
+
about: Use GitHub Discussions for questions, show & tell, and ideas.
|
|
6
|
+
- name: Read the docs
|
|
7
|
+
url: https://github.com/sifxprime/kodelyth-ecc/wiki
|
|
8
|
+
about: Check the wiki first — FAQ, installation guide, agent reference.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Feature request
|
|
3
|
+
about: Suggest a new agent, skill, command, hook, platform, or bundle
|
|
4
|
+
title: '[FEATURE] '
|
|
5
|
+
labels: enhancement
|
|
6
|
+
assignees: ''
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What are you proposing?
|
|
10
|
+
|
|
11
|
+
<!-- One clear sentence. e.g. "Add a `database-migrator` agent" or "Support Neovim as an install target" -->
|
|
12
|
+
|
|
13
|
+
## Problem it solves
|
|
14
|
+
|
|
15
|
+
<!-- What pain does this remove? What do users have to do manually today? -->
|
|
16
|
+
|
|
17
|
+
## Proposed solution
|
|
18
|
+
|
|
19
|
+
<!-- How should it work? Be as specific as you can. -->
|
|
20
|
+
|
|
21
|
+
## Alternatives you've considered
|
|
22
|
+
|
|
23
|
+
<!-- What did you try or think about before proposing this? -->
|
|
24
|
+
|
|
25
|
+
## Category
|
|
26
|
+
|
|
27
|
+
- [ ] New agent
|
|
28
|
+
- [ ] New skill
|
|
29
|
+
- [ ] New slash command
|
|
30
|
+
- [ ] New hook
|
|
31
|
+
- [ ] New platform / install target
|
|
32
|
+
- [ ] New bundle
|
|
33
|
+
- [ ] Dashboard feature
|
|
34
|
+
- [ ] MCP server feature
|
|
35
|
+
- [ ] Other: ___
|
|
36
|
+
|
|
37
|
+
## Would you be willing to contribute it?
|
|
38
|
+
|
|
39
|
+
- [ ] Yes — I can open a PR
|
|
40
|
+
- [ ] No — but I'd test it
|
|
41
|
+
- [ ] Not sure yet
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Good first issue
|
|
3
|
+
about: Something small and well-scoped — perfect for a first contribution
|
|
4
|
+
title: '[GOOD FIRST ISSUE] '
|
|
5
|
+
labels: good first issue, help wanted
|
|
6
|
+
assignees: ''
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## What needs to be done
|
|
10
|
+
|
|
11
|
+
<!-- Clear, one-paragraph description of the task. No ambiguity. -->
|
|
12
|
+
|
|
13
|
+
## Why it matters
|
|
14
|
+
|
|
15
|
+
<!-- One sentence. What does this fix or improve for users? -->
|
|
16
|
+
|
|
17
|
+
## Exact acceptance criteria
|
|
18
|
+
|
|
19
|
+
- [ ] ...
|
|
20
|
+
- [ ] ...
|
|
21
|
+
- [ ] `npm test` passes
|
|
22
|
+
|
|
23
|
+
## Helpful context
|
|
24
|
+
|
|
25
|
+
<!-- Links to relevant files, docs, or examples. -->
|
|
26
|
+
|
|
27
|
+
- Related file(s): `...`
|
|
28
|
+
- Related docs: `...`
|
|
29
|
+
|
|
30
|
+
## Estimated effort
|
|
31
|
+
|
|
32
|
+
<!-- XS (< 1h) / S (1-2h) / M (2-4h) -->
|
|
33
|
+
|
|
34
|
+
## Questions?
|
|
35
|
+
|
|
36
|
+
Drop a comment before starting. We'll clarify anything that's unclear.
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,45 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to Kodelyth ECC are documented here.
|
|
4
4
|
|
|
5
|
+
## v1.7.4 — Real-time IDE-aware dashboard + cross-IDE memory protocol (May 2026)
|
|
6
|
+
|
|
7
|
+
The dashboard now sees what every IDE on the machine is doing in real time, not just Claude Code. Memory continuity across IDEs is documented and operationalised through the universal `memory-protocol.md` rule and the existing MCP tool surface.
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **Sessions → Live IDE activity** card in the dashboard, surfacing the most recently modified session files from Claude Code (`~/.claude/projects/`), Windsurf (`~/.codeium/windsurf/`), Windsurf-Next (`~/.codeium/windsurf-next/`), Cursor (OS-aware workspaceStorage path), Antigravity (`~/.antigravity/` + `<cwd>/.agent/`), plus a generic `custom` row for `KODELYTH_EXTRA_IDE_WATCH` paths
|
|
12
|
+
- New `GET /api/ide-sessions` endpoint (read-only, no SQLite reads — stat-only, hard-capped at 500 files per walk)
|
|
13
|
+
- New `KODELYTH_EXTRA_IDE_WATCH` env var (comma / semicolon / colon separated) so power users can wire arbitrary directories into the realtime watcher
|
|
14
|
+
- New `KODELYTH_WINDSURF_NEXT_DIR`, `KODELYTH_CURSOR_DIR`, `KODELYTH_ANTIGRAVITY_DIR` env-var overrides for non-default IDE install paths
|
|
15
|
+
- New section in `README.md` — **"Memory & dashboard reality per IDE"** — explicit truth table of what auto-recall, auto-capture, manual recall, and dashboard activity look like per platform
|
|
16
|
+
- 12 new tests (`tests/dashboard/data.test.js` + `server.test.js`) covering windsurf-next, cursor, antigravity, custom watch paths, and SSE behaviour. Total: **336 → 348 tests, all passing**
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- `rules/common/memory-protocol.md` — now explicitly instructs non-Claude-Code IDEs (Windsurf, Cursor, Codex, Antigravity, etc.) to proactively call the `recall_memory` and `capture_memory` MCP tools. Includes exact tool signatures and CLI equivalents. Auto-installed for every target via `.windsurfrules` / `.cursor/rules` / `.agent/rules`
|
|
21
|
+
- Dashboard SSE poll interval **10 s → 3 s** (3× faster realtime, still zero CPU when no browser is connected)
|
|
22
|
+
- `WATCH_PATHS` now includes `~/.kodelyth/evolve/routing-misses.jsonl` AND `~/.kodelyth/evolve/proposals.jsonl` (previously only `proposals.jsonl`, which often doesn't exist), plus the `~/.kodelyth/token-budget/` directory mtime
|
|
23
|
+
- Dashboard UI version badge: v1.7.0 → v1.7.4
|
|
24
|
+
- Source comments in `scripts/dashboard/server.js` + `data.js`: v1.7.0 → v1.7.4
|
|
25
|
+
- All 14 active social SVGs: v1.7.3 → v1.7.4 (27 total replacements)
|
|
26
|
+
- `social/github-social-preview.svg` test-count line: 336 → 348
|
|
27
|
+
- `wiki/Installation-Guide.md` test-count references: 336 → 348
|
|
28
|
+
- `README.md` test coverage badge in comparison table: 336 → 348
|
|
29
|
+
- `package.json` + `VERSION`: 1.7.3 → 1.7.4
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- **Broken watch path** — `scripts/dashboard/server.js` previously watched `~/.kodelyth/evolve/proposals.jsonl` only. That file does not exist until the user runs `kodelyth-ecc evolve analyze`, so routing-miss writes never triggered SSE refreshes for most users. Now both files are watched.
|
|
34
|
+
- Token-budget tab now triggers SSE refresh when budget files appear (previously the tab stayed stale).
|
|
35
|
+
|
|
36
|
+
### Verified live
|
|
37
|
+
|
|
38
|
+
- SSE `data-changed` latency: ~9 s → ~1.5 s after touching a watched file
|
|
39
|
+
- `/api/ide-sessions` correctly surfaces mixed Claude Code + Windsurf rows on a real user's machine
|
|
40
|
+
- `KODELYTH_EXTRA_IDE_WATCH` end-to-end: pointing at an arbitrary `tmp` dir surfaces as a `custom` platform row
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
5
44
|
## v1.7.3 — Full version sync across all SVGs and docs (May 2026)
|
|
6
45
|
|
|
7
46
|
Consistency pass: every version badge, terminal line, and current-version reference across
|
package/GITHUB_SETUP.md
ADDED
|
@@ -0,0 +1,553 @@
|
|
|
1
|
+
# GitHub Repository Setup Checklist
|
|
2
|
+
|
|
3
|
+
Step-by-step instructions for everything that requires the GitHub UI or CLI.
|
|
4
|
+
Do these **once** after pushing a new version. Takes ~15 minutes total.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## 1. Social Preview Image
|
|
9
|
+
|
|
10
|
+
GitHub requires a PNG or JPG (not SVG). Convert first, then upload.
|
|
11
|
+
|
|
12
|
+
### Convert SVG → PNG (one command)
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Option A — using Inkscape (install: brew install inkscape)
|
|
16
|
+
inkscape social/github-social-preview.svg \
|
|
17
|
+
--export-type=png \
|
|
18
|
+
--export-filename=social/github-social-preview.png \
|
|
19
|
+
--export-width=1280
|
|
20
|
+
|
|
21
|
+
# Option B — using ImageMagick (install: brew install imagemagick)
|
|
22
|
+
convert -size 1280x640 -density 150 \
|
|
23
|
+
social/github-social-preview.svg \
|
|
24
|
+
social/github-social-preview.png
|
|
25
|
+
|
|
26
|
+
# Option C — using rsvg-convert (install: brew install librsvg)
|
|
27
|
+
rsvg-convert -w 1280 -h 640 \
|
|
28
|
+
social/github-social-preview.svg \
|
|
29
|
+
-o social/github-social-preview.png
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Upload to GitHub
|
|
33
|
+
|
|
34
|
+
1. Go to `https://github.com/sifxprime/kodelyth-ecc`
|
|
35
|
+
2. Click **Settings** (top right of repo)
|
|
36
|
+
3. Scroll to **Social preview** section
|
|
37
|
+
4. Click **Edit** → **Upload an image**
|
|
38
|
+
5. Select `social/github-social-preview.png`
|
|
39
|
+
6. Click **Save changes**
|
|
40
|
+
|
|
41
|
+
> The preview image appears when anyone shares the repo link on X, LinkedIn, Slack, WhatsApp, etc.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
45
|
+
## 2. Repository About (Description + Topics)
|
|
46
|
+
|
|
47
|
+
### About description
|
|
48
|
+
|
|
49
|
+
1. Go to `https://github.com/sifxprime/kodelyth-ecc`
|
|
50
|
+
2. Click the **gear icon ⚙** next to "About" (top right of the repo page)
|
|
51
|
+
3. Set **Description** to exactly:
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
70 agents · 194 skills · 97 commands · MCP server · devil mode · 11 platforms · zero telemetry
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
4. Set **Website** to:
|
|
58
|
+
```
|
|
59
|
+
https://www.npmjs.com/package/kodelyth-ecc
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
5. Check these boxes:
|
|
63
|
+
- ✅ Releases
|
|
64
|
+
- ✅ Packages
|
|
65
|
+
- ✅ Deployments (if applicable)
|
|
66
|
+
|
|
67
|
+
6. Click **Save changes**
|
|
68
|
+
|
|
69
|
+
---
|
|
70
|
+
|
|
71
|
+
### Topics (paste all at once)
|
|
72
|
+
|
|
73
|
+
In the same **Edit repository details** dialog, add these topics one by one or paste via the GitHub API:
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
claude-code
|
|
77
|
+
windsurf
|
|
78
|
+
cursor
|
|
79
|
+
codex
|
|
80
|
+
antigravity
|
|
81
|
+
opencode
|
|
82
|
+
cline
|
|
83
|
+
roocode
|
|
84
|
+
aider
|
|
85
|
+
gemini-cli
|
|
86
|
+
ai-agents
|
|
87
|
+
ai-coding
|
|
88
|
+
coding-toolkit
|
|
89
|
+
developer-tools
|
|
90
|
+
llm
|
|
91
|
+
llm-tools
|
|
92
|
+
mcp
|
|
93
|
+
model-context-protocol
|
|
94
|
+
devil-mode
|
|
95
|
+
red-team
|
|
96
|
+
adversarial
|
|
97
|
+
local-memory
|
|
98
|
+
self-learning
|
|
99
|
+
auto-recall
|
|
100
|
+
intent-routing
|
|
101
|
+
semantic-routing
|
|
102
|
+
parallel-agents
|
|
103
|
+
multi-agent
|
|
104
|
+
bm25
|
|
105
|
+
dashboard
|
|
106
|
+
observability
|
|
107
|
+
hooks
|
|
108
|
+
slash-commands
|
|
109
|
+
productivity
|
|
110
|
+
kodelyth
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
**Or set via GitHub CLI (faster):**
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
gh repo edit sifxprime/kodelyth-ecc \
|
|
117
|
+
--add-topic claude-code \
|
|
118
|
+
--add-topic windsurf \
|
|
119
|
+
--add-topic cursor \
|
|
120
|
+
--add-topic codex \
|
|
121
|
+
--add-topic antigravity \
|
|
122
|
+
--add-topic opencode \
|
|
123
|
+
--add-topic cline \
|
|
124
|
+
--add-topic roocode \
|
|
125
|
+
--add-topic aider \
|
|
126
|
+
--add-topic gemini-cli \
|
|
127
|
+
--add-topic ai-agents \
|
|
128
|
+
--add-topic ai-coding \
|
|
129
|
+
--add-topic coding-toolkit \
|
|
130
|
+
--add-topic developer-tools \
|
|
131
|
+
--add-topic llm \
|
|
132
|
+
--add-topic mcp \
|
|
133
|
+
--add-topic model-context-protocol \
|
|
134
|
+
--add-topic devil-mode \
|
|
135
|
+
--add-topic red-team \
|
|
136
|
+
--add-topic local-memory \
|
|
137
|
+
--add-topic self-learning \
|
|
138
|
+
--add-topic intent-routing \
|
|
139
|
+
--add-topic parallel-agents \
|
|
140
|
+
--add-topic bm25 \
|
|
141
|
+
--add-topic dashboard \
|
|
142
|
+
--add-topic observability \
|
|
143
|
+
--add-topic hooks \
|
|
144
|
+
--add-topic kodelyth
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
> **Note:** GitHub allows max 20 topics per repo. Pick the 20 most relevant if the CLI command fails.
|
|
148
|
+
> Priority order: `claude-code`, `windsurf`, `ai-agents`, `mcp`, `model-context-protocol`, `devil-mode`, `local-memory`, `intent-routing`, `parallel-agents`, `coding-toolkit`, `developer-tools`, `llm`, `cursor`, `codex`, `antigravity`, `bm25`, `hooks`, `self-learning`, `kodelyth`, `dashboard`
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## 3. GitHub Wiki — Publish the 7 Pages
|
|
153
|
+
|
|
154
|
+
The wiki lives as a separate git repo at `https://github.com/sifxprime/kodelyth-ecc.wiki.git`.
|
|
155
|
+
|
|
156
|
+
### First-time setup
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
# Clone the wiki repo (separate from the main repo)
|
|
160
|
+
git clone https://github.com/sifxprime/kodelyth-ecc.wiki.git /tmp/ecc-wiki
|
|
161
|
+
cd /tmp/ecc-wiki
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
### Copy and publish all 7 pages
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
# From your main repo root:
|
|
168
|
+
cp wiki/Home.md /tmp/ecc-wiki/Home.md
|
|
169
|
+
cp wiki/Installation-Guide.md /tmp/ecc-wiki/Installation-Guide.md
|
|
170
|
+
cp wiki/Agent-Reference.md /tmp/ecc-wiki/Agent-Reference.md
|
|
171
|
+
cp wiki/Skill-Reference.md /tmp/ecc-wiki/Skill-Reference.md
|
|
172
|
+
cp wiki/Hook-Reference.md /tmp/ecc-wiki/Hook-Reference.md
|
|
173
|
+
cp wiki/Platform-Support.md /tmp/ecc-wiki/Platform-Support.md
|
|
174
|
+
cp wiki/FAQ.md /tmp/ecc-wiki/FAQ.md
|
|
175
|
+
|
|
176
|
+
cd /tmp/ecc-wiki
|
|
177
|
+
git add -A
|
|
178
|
+
git commit -m "Publish ECC wiki v1.7.0 — 7 pages"
|
|
179
|
+
git push origin master
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### Verify
|
|
183
|
+
|
|
184
|
+
Visit `https://github.com/sifxprime/kodelyth-ecc/wiki` — all 7 pages should appear in the sidebar.
|
|
185
|
+
|
|
186
|
+
### Keep wiki in sync (future updates)
|
|
187
|
+
|
|
188
|
+
Every time you update a wiki page in `wiki/`, re-run the `cp` + `git push` commands above.
|
|
189
|
+
Or add a GitHub Action to auto-sync (see step 6 below).
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## 4. GitHub Discussions — Enable and Create Pinned Post
|
|
194
|
+
|
|
195
|
+
### Enable Discussions
|
|
196
|
+
|
|
197
|
+
1. Go to `https://github.com/sifxprime/kodelyth-ecc/settings`
|
|
198
|
+
2. Scroll to **Features**
|
|
199
|
+
3. Check **Discussions** → **Set up discussions**
|
|
200
|
+
|
|
201
|
+
### Create these categories (in Discussions settings)
|
|
202
|
+
|
|
203
|
+
| Category | Format | Purpose |
|
|
204
|
+
|---|---|---|
|
|
205
|
+
| Announcements | Announcement | Releases, major updates |
|
|
206
|
+
| Q&A | Question / Answer | Support |
|
|
207
|
+
| Show & Tell | Open-ended | "What did you use ECC for?" |
|
|
208
|
+
| Ideas | Open-ended | Feature ideas |
|
|
209
|
+
| Devil Mode Stories | Open-ended | Security finds, red-team results |
|
|
210
|
+
|
|
211
|
+
### Pinned welcome post
|
|
212
|
+
|
|
213
|
+
Create a new Discussion in **Announcements**:
|
|
214
|
+
|
|
215
|
+
**Title:** `Welcome to Kodelyth ECC — start here 👋`
|
|
216
|
+
|
|
217
|
+
**Body:**
|
|
218
|
+
```markdown
|
|
219
|
+
Welcome!
|
|
220
|
+
|
|
221
|
+
**Kodelyth ECC** gives your AI coding assistant 70 specialist agents, 194 skills, 97 commands, and self-learning memory. One install, 11 platforms.
|
|
222
|
+
|
|
223
|
+
## Quick links
|
|
224
|
+
- [Installation Guide](https://github.com/sifxprime/kodelyth-ecc/wiki/Installation-Guide)
|
|
225
|
+
- [Agent Reference](https://github.com/sifxprime/kodelyth-ecc/wiki/Agent-Reference)
|
|
226
|
+
- [FAQ](https://github.com/sifxprime/kodelyth-ecc/wiki/FAQ)
|
|
227
|
+
- [Full docs](https://github.com/sifxprime/kodelyth-ecc/tree/main/docs)
|
|
228
|
+
|
|
229
|
+
## Install
|
|
230
|
+
|
|
231
|
+
\`\`\`bash
|
|
232
|
+
npx kodelyth-ecc
|
|
233
|
+
\`\`\`
|
|
234
|
+
|
|
235
|
+
## Share your first result
|
|
236
|
+
|
|
237
|
+
Drop a comment below: what's the first thing you used ECC for?
|
|
238
|
+
Best results get featured in the README.
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
Pin this discussion.
|
|
242
|
+
|
|
243
|
+
---
|
|
244
|
+
|
|
245
|
+
## 5. Good First Issues — Create Them Now
|
|
246
|
+
|
|
247
|
+
Use `gh` CLI to create 10 issues tagged `good first issue`. Copy-paste each block:
|
|
248
|
+
|
|
249
|
+
```bash
|
|
250
|
+
gh issue create \
|
|
251
|
+
--title "[GOOD FIRST ISSUE] Add Ruby language reviewer agent" \
|
|
252
|
+
--label "good first issue,help wanted,new-agent" \
|
|
253
|
+
--body "$(cat <<'EOF'
|
|
254
|
+
## What needs to be done
|
|
255
|
+
Create `agents/ruby-reviewer.md` — a specialist Ruby code reviewer following the same structure as `agents/python-reviewer.md` and `agents/typescript-reviewer.md`.
|
|
256
|
+
|
|
257
|
+
## Why it matters
|
|
258
|
+
Ruby/Rails users currently get generic review. A specialist reviewer catches Ruby-specific patterns (ActiveRecord N+1, missing frozen_string_literal, unsafe `send`, etc.)
|
|
259
|
+
|
|
260
|
+
## Exact acceptance criteria
|
|
261
|
+
- [ ] File at `agents/ruby-reviewer.md`
|
|
262
|
+
- [ ] Has a specific persona with 10+ years Ruby/Rails experience
|
|
263
|
+
- [ ] Review priorities cover: N+1 queries, mass assignment, missing `frozen_string_literal`, unsafe metaprogramming, Gemfile security
|
|
264
|
+
- [ ] Trigger patterns added to `rules/common/agent-intent-routing.md`
|
|
265
|
+
- [ ] Agent listed in `rules/common/agents.md`
|
|
266
|
+
- [ ] `npm test` passes
|
|
267
|
+
|
|
268
|
+
## Helpful context
|
|
269
|
+
- Related file: `agents/python-reviewer.md` (use as structure template)
|
|
270
|
+
- Related file: `rules/common/agent-intent-routing.md` (add trigger patterns here)
|
|
271
|
+
- Estimated effort: M (2–4h)
|
|
272
|
+
EOF
|
|
273
|
+
)"
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
```bash
|
|
277
|
+
gh issue create \
|
|
278
|
+
--title "[GOOD FIRST ISSUE] Add Elixir language reviewer agent" \
|
|
279
|
+
--label "good first issue,help wanted,new-agent" \
|
|
280
|
+
--body "$(cat <<'EOF'
|
|
281
|
+
## What needs to be done
|
|
282
|
+
Create `agents/elixir-reviewer.md` — a specialist Elixir/Phoenix code reviewer.
|
|
283
|
+
|
|
284
|
+
## Why it matters
|
|
285
|
+
Elixir users have no specialist reviewer. Key patterns to catch: missing pattern match exhaustiveness, unbounded GenServer message queues, blocking Repo calls inside GenServers, missing supervision tree restarts.
|
|
286
|
+
|
|
287
|
+
## Exact acceptance criteria
|
|
288
|
+
- [ ] File at `agents/elixir-reviewer.md`
|
|
289
|
+
- [ ] Has a specific persona with Elixir/OTP/Phoenix experience
|
|
290
|
+
- [ ] Review covers: GenServer misuse, supervision, Ecto query safety, pattern match completeness
|
|
291
|
+
- [ ] Trigger patterns added to `rules/common/agent-intent-routing.md`
|
|
292
|
+
- [ ] `npm test` passes
|
|
293
|
+
|
|
294
|
+
## Helpful context
|
|
295
|
+
- Template: `agents/go-reviewer.md`
|
|
296
|
+
- Estimated effort: M (2–4h)
|
|
297
|
+
EOF
|
|
298
|
+
)"
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
```bash
|
|
302
|
+
gh issue create \
|
|
303
|
+
--title "[GOOD FIRST ISSUE] Add Neovim as an install target" \
|
|
304
|
+
--label "good first issue,help wanted" \
|
|
305
|
+
--body "$(cat <<'EOF'
|
|
306
|
+
## What needs to be done
|
|
307
|
+
Add `neovim` as a target in `install.sh` and `install.ps1`. Neovim AI plugins (avante.nvim, codecompanion.nvim) read from a project config directory.
|
|
308
|
+
|
|
309
|
+
## Why it matters
|
|
310
|
+
Neovim + AI plugin users have no install path. It's a large audience with growing adoption of coding AI tools.
|
|
311
|
+
|
|
312
|
+
## Exact acceptance criteria
|
|
313
|
+
- [ ] `--target neovim` works in `install.sh` (copy rules to `.nvim/rules/` or equivalent)
|
|
314
|
+
- [ ] Feature parity in `install.ps1`
|
|
315
|
+
- [ ] `--help` output updated
|
|
316
|
+
- [ ] README platform table updated
|
|
317
|
+
- [ ] `npm test` passes
|
|
318
|
+
|
|
319
|
+
## Helpful context
|
|
320
|
+
- Start from the `opencode` target in `install.sh` as the simplest rules-only pattern
|
|
321
|
+
- Estimated effort: S (1–2h)
|
|
322
|
+
EOF
|
|
323
|
+
)"
|
|
324
|
+
```
|
|
325
|
+
|
|
326
|
+
```bash
|
|
327
|
+
gh issue create \
|
|
328
|
+
--title "[GOOD FIRST ISSUE] Write a new devil-mode agent: rate-limit-tester" \
|
|
329
|
+
--label "good first issue,help wanted,new-agent" \
|
|
330
|
+
--body "$(cat <<'EOF'
|
|
331
|
+
## What needs to be done
|
|
332
|
+
Create `agents/rate-limit-tester.md` — an adversarial agent that audits API rate limiting implementations.
|
|
333
|
+
|
|
334
|
+
## Why it matters
|
|
335
|
+
Rate limiting is frequently missing, misconfigured, or bypassable. It belongs in the devil-mode crew.
|
|
336
|
+
|
|
337
|
+
## What it should check
|
|
338
|
+
- Missing rate limits on public endpoints
|
|
339
|
+
- Rate limits bypassable via IP rotation / header manipulation
|
|
340
|
+
- Missing rate limits on auth endpoints (brute-force risk)
|
|
341
|
+
- Redis/memory-based rate limiters with race conditions
|
|
342
|
+
- Missing rate limit headers in responses (RFC 6585)
|
|
343
|
+
|
|
344
|
+
## Exact acceptance criteria
|
|
345
|
+
- [ ] File at `agents/rate-limit-tester.md`
|
|
346
|
+
- [ ] Follows devil-mode agent structure (bash grep patterns, severity levels, remediation)
|
|
347
|
+
- [ ] Added to `/devil-mode` command's agent list in `commands/devil-mode.md`
|
|
348
|
+
- [ ] Trigger patterns added to `rules/common/agent-intent-routing.md`
|
|
349
|
+
- [ ] `npm test` passes
|
|
350
|
+
|
|
351
|
+
## Helpful context
|
|
352
|
+
- Template: `agents/secret-hunter.md` (follow this structure)
|
|
353
|
+
- Estimated effort: M (2–4h)
|
|
354
|
+
EOF
|
|
355
|
+
)"
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
```bash
|
|
359
|
+
gh issue create \
|
|
360
|
+
--title "[GOOD FIRST ISSUE] Add badge: Node.js version requirement" \
|
|
361
|
+
--label "good first issue,help wanted,documentation" \
|
|
362
|
+
--body "$(cat <<'EOF'
|
|
363
|
+
## What needs to be done
|
|
364
|
+
Add a Node.js version badge to `README.md` that links to nodejs.org.
|
|
365
|
+
|
|
366
|
+
## Why it matters
|
|
367
|
+
Users on older Node versions get cryptic errors. A visible badge sets expectations upfront.
|
|
368
|
+
|
|
369
|
+
## Exact acceptance criteria
|
|
370
|
+
- [ ] Badge added to the badge row in README: `[](https://nodejs.org)`
|
|
371
|
+
- [ ] Badge appears in the correct position (after License badge)
|
|
372
|
+
- [ ] `npm test` passes
|
|
373
|
+
|
|
374
|
+
## Helpful context
|
|
375
|
+
- File: `README.md` lines 5–21
|
|
376
|
+
- Estimated effort: XS (< 15 min)
|
|
377
|
+
EOF
|
|
378
|
+
)"
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
```bash
|
|
382
|
+
gh issue create \
|
|
383
|
+
--title "[GOOD FIRST ISSUE] Add CONTRIBUTING template for new skill" \
|
|
384
|
+
--label "good first issue,help wanted,documentation" \
|
|
385
|
+
--body "$(cat <<'EOF'
|
|
386
|
+
## What needs to be done
|
|
387
|
+
Add a skill proposal template to `.github/ISSUE_TEMPLATE/new_skill.md`. Currently only `new_agent.md` exists — skills need their own template.
|
|
388
|
+
|
|
389
|
+
## Exact acceptance criteria
|
|
390
|
+
- [ ] File at `.github/ISSUE_TEMPLATE/new_skill.md`
|
|
391
|
+
- [ ] Sections: skill name, problem it solves, target agents, example content (first 20 lines), Kodelyth Standard checklist
|
|
392
|
+
- [ ] Labels: `enhancement`, `new-skill`
|
|
393
|
+
- [ ] `npm test` passes
|
|
394
|
+
|
|
395
|
+
## Helpful context
|
|
396
|
+
- Template reference: `.github/ISSUE_TEMPLATE/new_agent.md`
|
|
397
|
+
- Estimated effort: XS (< 1h)
|
|
398
|
+
EOF
|
|
399
|
+
)"
|
|
400
|
+
```
|
|
401
|
+
|
|
402
|
+
```bash
|
|
403
|
+
gh issue create \
|
|
404
|
+
--title "[GOOD FIRST ISSUE] Add PHP language rules" \
|
|
405
|
+
--label "good first issue,help wanted" \
|
|
406
|
+
--body "$(cat <<'EOF'
|
|
407
|
+
## What needs to be done
|
|
408
|
+
Create `rules/php/` with coding standards for PHP projects (Laravel, Symfony, vanilla PHP).
|
|
409
|
+
|
|
410
|
+
## Why it matters
|
|
411
|
+
PHP is one of the most widely used server-side languages and has no language-specific rules in ECC.
|
|
412
|
+
|
|
413
|
+
## What to cover
|
|
414
|
+
- Type hints and strict_types declaration
|
|
415
|
+
- PDO usage over raw mysql_* functions
|
|
416
|
+
- Input sanitization patterns
|
|
417
|
+
- Composer autoloading conventions
|
|
418
|
+
- PSR-12 coding standard alignment
|
|
419
|
+
|
|
420
|
+
## Exact acceptance criteria
|
|
421
|
+
- [ ] `rules/php/coding-standards.md` created
|
|
422
|
+
- [ ] `install.sh` `php` case already handles it — verify it works
|
|
423
|
+
- [ ] `npm test` passes
|
|
424
|
+
|
|
425
|
+
## Helpful context
|
|
426
|
+
- Template: `rules/golang/` (follow same structure)
|
|
427
|
+
- Estimated effort: S (1–2h)
|
|
428
|
+
EOF
|
|
429
|
+
)"
|
|
430
|
+
```
|
|
431
|
+
|
|
432
|
+
```bash
|
|
433
|
+
gh issue create \
|
|
434
|
+
--title "[GOOD FIRST ISSUE] Add /memory CLI examples to wiki FAQ" \
|
|
435
|
+
--label "good first issue,help wanted,documentation" \
|
|
436
|
+
--body "$(cat <<'EOF'
|
|
437
|
+
## What needs to be done
|
|
438
|
+
Add a dedicated FAQ section to `wiki/FAQ.md` covering the `/memory` slash command with real examples.
|
|
439
|
+
|
|
440
|
+
## Exact acceptance criteria
|
|
441
|
+
- [ ] New section in `wiki/FAQ.md`: "How do I use the memory system?"
|
|
442
|
+
- [ ] Covers: /memory recall, /memory remember, /memory review-pending, /memory inject
|
|
443
|
+
- [ ] At least 3 example prompts with expected outputs
|
|
444
|
+
- [ ] Section follows existing FAQ style
|
|
445
|
+
|
|
446
|
+
## Helpful context
|
|
447
|
+
- File: `wiki/FAQ.md`
|
|
448
|
+
- Reference: `commands/memory.md` (source of truth for memory CLI)
|
|
449
|
+
- Estimated effort: XS (< 1h)
|
|
450
|
+
EOF
|
|
451
|
+
)"
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
```bash
|
|
455
|
+
gh issue create \
|
|
456
|
+
--title "[GOOD FIRST ISSUE] Add GitHub Actions badge to README" \
|
|
457
|
+
--label "good first issue,help wanted" \
|
|
458
|
+
--body "$(cat <<'EOF'
|
|
459
|
+
## What needs to be done
|
|
460
|
+
Add a CI status badge to README that reflects the `.github/workflows/ci.yml` workflow.
|
|
461
|
+
|
|
462
|
+
## Exact acceptance criteria
|
|
463
|
+
- [ ] Badge added: `[](https://github.com/sifxprime/kodelyth-ecc/actions/workflows/ci.yml)`
|
|
464
|
+
- [ ] Placed after the Tests badge in README
|
|
465
|
+
- [ ] `npm test` passes locally
|
|
466
|
+
|
|
467
|
+
## Estimated effort: XS (< 15 min)
|
|
468
|
+
EOF
|
|
469
|
+
)"
|
|
470
|
+
```
|
|
471
|
+
|
|
472
|
+
```bash
|
|
473
|
+
gh issue create \
|
|
474
|
+
--title "[GOOD FIRST ISSUE] Add dart/flutter language rules" \
|
|
475
|
+
--label "good first issue,help wanted" \
|
|
476
|
+
--body "$(cat <<'EOF'
|
|
477
|
+
## What needs to be done
|
|
478
|
+
Create `rules/dart/` with coding standards for Dart/Flutter projects.
|
|
479
|
+
|
|
480
|
+
## Why it matters
|
|
481
|
+
Dart/Flutter is one of ECC's supported review targets (flutter-reviewer agent exists) but has no language rules file.
|
|
482
|
+
|
|
483
|
+
## What to cover
|
|
484
|
+
- Null safety patterns
|
|
485
|
+
- Widget build method best practices
|
|
486
|
+
- async/await over .then() chaining
|
|
487
|
+
- const constructors where possible
|
|
488
|
+
- State management conventions (BLoC, Riverpod)
|
|
489
|
+
|
|
490
|
+
## Exact acceptance criteria
|
|
491
|
+
- [ ] `rules/dart/coding-standards.md` created
|
|
492
|
+
- [ ] `install.sh` handles `dart` already — verify it installs correctly
|
|
493
|
+
- [ ] `npm test` passes
|
|
494
|
+
|
|
495
|
+
## Helpful context
|
|
496
|
+
- Template: `rules/kotlin/` (similar mobile-first mindset)
|
|
497
|
+
- Estimated effort: S (1–2h)
|
|
498
|
+
EOF
|
|
499
|
+
)"
|
|
500
|
+
```
|
|
501
|
+
|
|
502
|
+
---
|
|
503
|
+
|
|
504
|
+
## 6. Optional: Auto-sync Wiki via GitHub Actions
|
|
505
|
+
|
|
506
|
+
If you want wiki pages to auto-publish when you push to `main`, add this workflow:
|
|
507
|
+
|
|
508
|
+
```bash
|
|
509
|
+
# Create the file:
|
|
510
|
+
cat > .github/workflows/wiki-sync.yml << 'EOF'
|
|
511
|
+
name: Sync Wiki
|
|
512
|
+
|
|
513
|
+
on:
|
|
514
|
+
push:
|
|
515
|
+
branches: [main]
|
|
516
|
+
paths:
|
|
517
|
+
- 'wiki/**'
|
|
518
|
+
|
|
519
|
+
jobs:
|
|
520
|
+
sync:
|
|
521
|
+
runs-on: ubuntu-latest
|
|
522
|
+
steps:
|
|
523
|
+
- uses: actions/checkout@v4
|
|
524
|
+
|
|
525
|
+
- name: Publish wiki pages
|
|
526
|
+
uses: nicowillis/publish-wiki-action@v1
|
|
527
|
+
with:
|
|
528
|
+
path: wiki
|
|
529
|
+
env:
|
|
530
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
531
|
+
EOF
|
|
532
|
+
```
|
|
533
|
+
|
|
534
|
+
> Alternatively keep it manual — the `cp` + `git push` approach from Step 3 is more reliable and gives you explicit control.
|
|
535
|
+
|
|
536
|
+
---
|
|
537
|
+
|
|
538
|
+
## Completion Checklist
|
|
539
|
+
|
|
540
|
+
Run through this after every major release:
|
|
541
|
+
|
|
542
|
+
- [ ] Social preview PNG uploaded to GitHub Settings
|
|
543
|
+
- [ ] About description updated (`70 agents · 194 skills · ...`)
|
|
544
|
+
- [ ] Topics set (20 max)
|
|
545
|
+
- [ ] Wiki pages pushed via `git push` to wiki repo
|
|
546
|
+
- [ ] Discussions enabled + welcome post pinned
|
|
547
|
+
- [ ] At least 5 good-first-issues open
|
|
548
|
+
- [ ] README badges rendering correctly (check on GitHub, not just locally)
|
|
549
|
+
- [ ] CI badge added and showing green
|
|
550
|
+
|
|
551
|
+
---
|
|
552
|
+
|
|
553
|
+
*Repo: https://github.com/sifxprime/kodelyth-ecc*
|