Commit ca75386
Merge pull request #8 from OnlyTerp/devin/1776401488-phase4
* feat: config wizard + reference architectures + CI + outreach + 4 new skills + i18n
- docs/wizard/ — interactive static config-builder (HTML+JS, GitHub Pages friendly)
- docs/reference-architectures/ — 4 full blueprints (homelab, solo-dev, small-agency, road-warrior)
- docs/outreach/ — launch drafts (tweet, HN, Reddit, upstream-Nous PR, long blog)
- .github/workflows/ci.yml + validate_skills.py — markdown-link-check, yamllint, skill frontmatter linter, prettier advisory
- skills/ — +4 (daily-inbox-triage, hermes-weekly, spam-trap, meeting-prep) — total 13
- README-zh.md, README-ja.md — localized entry summaries
- templates/config/*.yaml — quoted ${VAR} inside flow mappings (valid YAML)
- README: skills 9→13, language links, wizard/ref-arch/outreach rows, CI badge
- CHANGELOG + ROADMAP updated
Co-Authored-By: Rob <onerobby@gmail.com>
* fix: correct relative path from daily-inbox-triage to spam-trap skill
Co-Authored-By: Rob <onerobby@gmail.com>
* wizard: persona selection now drives form presets + persona-specific YAML blocks
Addresses Devin Review comment: the persona radio (Question 1) was only
emitted as a YAML comment. Now it actually configures the starting state.
- onchange="applyPersona(value)" on each persona radio
- PERSONA_PRESETS mirrors templates/config/<persona>.yaml shape:
minimum / telegram-bot / production / cost-optimized / security-hardened
- applyPersona() sets default_model, memory, gateways, mcps, approval,
obs, crons — then re-generates YAML automatically
- generate() now emits persona-specific blocks:
- security-hardened: security.mcp.{default_trust,require_allowlist,allow_sampling}
- security-hardened + production: webhook require_signature + max_body_bytes,
redaction.{memory_write,log}, quarantine profile
- cost-optimized: routing.rules (5-rule cost ladder)
Co-Authored-By: Rob <onerobby@gmail.com>
* wizard: align persona presets with templates/config/<persona>.yaml
Devin Review flagged four mismatches between the PERSONA_PRESETS and the
actual reference templates. Fixed:
- minimum: memory none -> vector (templates/config/minimum.yaml:25 uses vector)
- telegram-bot: memory vector -> lightrag (telegram-bot.yaml:43 uses lightrag)
- cost-optimized: memory vector -> lightrag (cost-optimized.yaml:66 uses lightrag)
- cost-optimized: obs helicone -> none (cost-optimized.yaml has no exporters;
it's telemetry + alerts only)
Now each preset actually mirrors its template, which is what the code comment
at line 185-187 claims.
Co-Authored-By: Rob <onerobby@gmail.com>
* wizard: cost-optimized routing uses cerebras/llama-3.1-70b (match template)
templates/config/cost-optimized.yaml uses llama-3.1-70b in all three
places (classification, triage model, compress_model). The wizard was
emitting llama-3.3-70b. Align.
Co-Authored-By: Rob <onerobby@gmail.com>
* outreach + i18n: update skill count from 9 to 13
All 5 outreach drafts and both i18n READMEs referenced the old count
of 9 skills. This PR added 4 new skills (daily-inbox-triage,
hermes-weekly, spam-trap, meeting-prep) bringing the total to 13.
Updated files:
- README-zh.md, README-ja.md (count + skill name list)
- docs/outreach/blog-post-long.md
- docs/outreach/hacker-news-post.md (count + enumerated list)
- docs/outreach/launch-tweet-thread.md
- docs/outreach/nous-upstream-pr-body.md
- docs/outreach/reddit-localllama.md (count + enumerated list)
Co-Authored-By: Rob <onerobby@gmail.com>
* fix: preserve integer type for Telegram allowed_user_ids
Devin Review caught a red issue: quoting ${TELEGRAM_OWNER_ID} inside a
flow sequence (e.g. ["${TELEGRAM_OWNER_ID}"]) makes the YAML valid but
changes the parsed type from int to str after env-var substitution.
Telegram user IDs are numeric and Hermes compares them with strict
type matching, so a string-typed list would reject all messages.
Switched all 4 templates + 2 reference architectures + the wizard
generator to block-sequence style:
allowed_user_ids:
- ${TELEGRAM_OWNER_ID}
Verified with PyYAML that post-substitution type is int across all 4
templates.
Also: localized READMEs (zh + ja) now use 'sudo bash' to match the
main README, since vps-bootstrap.sh requires root.
Co-Authored-By: Rob <onerobby@gmail.com>
* wizard: emit all providers referenced by persona routing rules
Devin Review (red): the wizard previously emitted only the provider
derived from the default model. But cost-optimized routing references
cerebras, moonshot, and anthropic too — a wizard-generated config
would fail at runtime when routing picked one of those.
Refactored to a data-driven `EXTRA_PROVIDERS` map so each persona
declares which providers its routing rules need. The generator then
emits the union of (default-model provider, extra persona providers).
- cost-optimized: anthropic, google, moonshot, cerebras
- production: anthropic, google
- security-hardened: anthropic (for the quarantine fallback)
Also added cerebras to the providerKeys map (CEREBRAS_API_KEY).
Co-Authored-By: Rob <onerobby@gmail.com>
* fix: skills catalog + wizard lightrag provider coverage
Two Devin Review findings addressed:
1. skills/README.md catalog listed only 9 skills; PR added 4 new ones
(daily-inbox-triage, hermes-weekly, spam-trap, meeting-prep).
Appended rows for all 4 so the catalog matches the 13-skill count
now quoted in README / CHANGELOG / outreach docs.
2. Wizard generator: when memory=lightrag is selected, the generated
config references google/gemini-2.5-flash (LLM) and
openai/text-embedding-3-small (embedding), but the provider-emission
set only accounted for the default-model provider + routing-rule
providers. For 3 of 5 personas this produced broken configs with
missing embedding provider credentials. Added a lightrag branch
that injects google + openai into providersToEmit.
Co-Authored-By: Rob <onerobby@gmail.com>
---------
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>32 files changed
Lines changed: 2181 additions & 19 deletions
File tree
- .github
- scripts
- workflows
- docs
- outreach
- reference-architectures
- wizard
- skills
- dev
- meeting-prep
- release-notes
- ops
- daily-inbox-triage
- hermes-weekly
- security/spam-trap
- templates/config
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
5 | 19 | | |
6 | 20 | | |
7 | 21 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | | - | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
12 | 15 | | |
13 | 16 | | |
14 | 17 | | |
| |||
37 | 40 | | |
38 | 41 | | |
39 | 42 | | |
40 | | - | |
| 43 | + | |
41 | 44 | | |
42 | 45 | | |
43 | 46 | | |
| |||
46 | 49 | | |
47 | 50 | | |
48 | 51 | | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
49 | 55 | | |
50 | 56 | | |
51 | 57 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
8 | 7 | | |
9 | 8 | | |
10 | 9 | | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
15 | | - | |
16 | | - | |
17 | | - | |
18 | | - | |
19 | | - | |
| 15 | + | |
20 | 16 | | |
| 17 | + | |
21 | 18 | | |
22 | 19 | | |
23 | 20 | | |
| |||
27 | 24 | | |
28 | 25 | | |
29 | 26 | | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
30 | 32 | | |
31 | 33 | | |
32 | 34 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
0 commit comments