Skip to content

Commit 8727caa

Browse files
Adopt PR #47: domain chip feedback route
Adopts useful domain-chip feedback route correction from contributor PR #47 on a trusted maintainer branch after docs readiness and installer hardening CI passed.
1 parent ad99857 commit 8727caa

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/feedback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you are not sure, start with `Spark-Agent-Site`.
2929
| Telegram commands and bot behavior | `https://github.com/vibeforge1111/spark-telegram-bot` |
3030
| Mission Control, Spawner UI, Kanban, Canvas | `https://github.com/vibeforge1111/vibeship-spawner-ui` |
3131
| Spark role, voice, permission behavior | `https://github.com/vibeforge1111/spark-character` |
32-
| Domain chips and skill graphs | `https://github.com/vibeforge1111/spark-skill-graphs` |
32+
| Domain chips, chip quality, methodology, and specialization paths | `https://github.com/vibeforge1111/spark-domain-chip-labs` |
3333

3434
## Good Issue Shape
3535

docs/feedback/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h2>Choose the repo first.</h2>
9393
<div class="feedback-repo-card"><h3>Telegram chat</h3><code>spark-telegram-bot</code><p>Bot commands, message handling, Telegram diagnostics, long polling behavior.</p><p class="feedback-links"><a href="https://github.com/vibeforge1111/spark-telegram-bot/issues/new?title=Spark%20Telegram%20Bot%20feedback%3A%20">Issue</a><span>/</span><a href="https://github.com/vibeforge1111/spark-telegram-bot/compare">PR</a></p></div>
9494
<div class="feedback-repo-card"><h3>Mission Control</h3><code>vibeship-spawner-ui</code><p>Spawner UI, Kanban, Canvas, project boards, mission visibility.</p><p class="feedback-links"><a href="https://github.com/vibeforge1111/vibeship-spawner-ui/issues/new?title=Mission%20Control%20feedback%3A%20">Issue</a><span>/</span><a href="https://github.com/vibeforge1111/vibeship-spawner-ui/compare">PR</a></p></div>
9595
<div class="feedback-repo-card"><h3>Character and permissions</h3><code>spark-character</code><p>Role, voice, permission awareness, persona boundaries.</p><p class="feedback-links"><a href="https://github.com/vibeforge1111/spark-character/issues/new?title=Spark%20Character%20feedback%3A%20">Issue</a><span>/</span><a href="https://github.com/vibeforge1111/spark-character/compare">PR</a></p></div>
96-
<div class="feedback-repo-card"><h3>Domain chips</h3><code>spark-skill-graphs</code><p>Chip definitions, skill graph examples, benchmarkable specialization paths.</p><p class="feedback-links"><a href="https://github.com/vibeforge1111/spark-skill-graphs/issues/new?title=Spark%20chip%20feedback%3A%20">Issue</a><span>/</span><a href="https://github.com/vibeforge1111/spark-skill-graphs/compare">PR</a></p></div>
96+
<div class="feedback-repo-card"><h3>Domain chips</h3><code>spark-domain-chip-labs</code><p>Chip quality, methodology, benchmark packs, and specialization paths.</p><p class="feedback-links"><a href="https://github.com/vibeforge1111/spark-domain-chip-labs/issues/new?title=Spark%20domain%20chip%20feedback%3A%20">Issue</a><span>/</span><a href="https://github.com/vibeforge1111/spark-domain-chip-labs/compare">PR</a></p></div>
9797
</div>
9898
<div class="doc-callout">
9999
<h3>Not sure where it belongs?</h3>

scripts/check-docs-readiness.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const pages = [
3939
{ path: "docs/troubleshooting/index.html", name: "Troubleshooting", required: ["spark fix telegram", "spark fix spawner", "spark doctor llm"] },
4040
{ path: "docs/security/index.html", name: "Security", required: ["spark security audit", "spark support bundle", "access"] },
4141
{ path: "docs/suites/index.html", name: "Modules", required: ["telegram-starter", "Domain Chip Memory", "Spawner UI"] },
42-
{ path: "docs/feedback/index.html", name: "Feedback", required: ["Choose the repo first", "Spark-Agent-Site", "spark-cli", "spark-researcher", "Agent-readable"] },
42+
{ path: "docs/feedback/index.html", name: "Feedback", required: ["Choose the repo first", "Spark-Agent-Site", "spark-cli", "spark-researcher", "spark-domain-chip-labs", "Agent-readable"] },
4343
{ path: "docs/self-improvement/index.html", name: "Self-improvement", required: ["domain chip", "Spark Researcher", "benchmark", "OTOLO", "Flowchart 1", "Flowchart 2", "Flowchart 3"] },
4444
];
4545

@@ -62,6 +62,7 @@ for (const page of pages) {
6262
assert(!/\bretard\b/i.test(text), `${page.name} contains user-hostile wording`);
6363
assert(!/\bblack box\b/i.test(text), `${page.name} should avoid black-box framing`);
6464
assert(!/\bLocalhost note\b/i.test(text), `${page.name} should not show the old localhost note`);
65+
assert(!/\bspark-skill-graphs\b/i.test(text), `${page.name} should not route feedback to retired spark-skill-graphs repo`);
6566
}
6667

6768
const overview = read("docs/index.html");

0 commit comments

Comments
 (0)