@jstn-sdk/ma 0.1.6 → 0.1.7
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/.codex/prompts/enforcement.md +10 -0
- package/README.md +29 -5
- package/docs/README.md +1 -1
- package/docs/getting-started.md +16 -1
- package/docs/mcp-setup.md +46 -3
- package/docs/qa/{release-readiness-0.1.6.md → release-readiness-0.1.7.md} +8 -8
- package/docs/release-spec.md +6 -6
- package/package.json +1 -1
- package/plugins/meta-architect/.app.json +1 -1
- package/plugins/meta-architect/.codex-plugin/plugin.json +1 -1
- package/plugins/meta-architect/.mcp.json +1 -1
- package/plugins/meta-architect/README.md +1 -1
- package/plugins/meta-architect/skills/meta-architect/SKILL.md +2 -0
- package/plugins/meta-architect/skills/sage/SKILL.md +13 -0
- package/skills/meta-architect/SKILL.md +2 -0
- package/skills/sage/SKILL.md +13 -0
- package/src/mcp-live-client.js +1 -1
- package/src/skills.js +2 -2
- package/templates/AGENTS.md +17 -0
|
@@ -54,6 +54,16 @@ The kernel may be minimal, but it must be strict. Extensions may vary, but they
|
|
|
54
54
|
|
|
55
55
|
`https://gitmcp.io/docs` is fallback policy only. It is not a normal approved evidence source for unlocking `$build`.
|
|
56
56
|
|
|
57
|
+
Approved discovery accelerators include `https://ossium.live/home`, `https://trendshift.io/`, `https://devhunt.org/`, `https://libraries.io/`, `https://openhub.net/`, and `https://www.opensourceprojects.dev/`.
|
|
58
|
+
|
|
59
|
+
These discovery accelerators help find OSS candidates faster, but they are not by themselves VERIFIED evidence sources for unlocking `$build`.
|
|
60
|
+
|
|
61
|
+
Canonical evidence order:
|
|
62
|
+
1. If the upstream repo or official docs are already known, start there.
|
|
63
|
+
2. Otherwise use approved discovery accelerators to generate or narrow candidates.
|
|
64
|
+
3. Map the chosen candidate to an exact upstream repository.
|
|
65
|
+
4. Verify against upstream repos and official docs before upgrading evidence status.
|
|
66
|
+
|
|
57
67
|
## Release truth rule
|
|
58
68
|
|
|
59
69
|
Do not claim a channel is published unless the corresponding push, release creation, asset upload, or package publish actually succeeded.
|
package/README.md
CHANGED
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
20
|
> [!IMPORTANT]
|
|
21
|
-
> Meta-Architect `v0.1.
|
|
21
|
+
> Meta-Architect `v0.1.7` is a production-grade skills line.
|
|
22
22
|
> It is not a lightweight demo branch.
|
|
23
|
-
> From `v0.1.
|
|
23
|
+
> From `v0.1.7` onward, the package is expected to ship with stable skill contracts, deterministic packaging, explicit release gates, and honest install and publish surfaces.
|
|
24
24
|
|
|
25
25
|
## Overview
|
|
26
26
|
|
|
@@ -57,7 +57,7 @@ It adds:
|
|
|
57
57
|
</tr>
|
|
58
58
|
<tr>
|
|
59
59
|
<td><strong>Release line</strong></td>
|
|
60
|
-
<td><code>v0.1.
|
|
60
|
+
<td><code>v0.1.7</code></td>
|
|
61
61
|
</tr>
|
|
62
62
|
<tr>
|
|
63
63
|
<td><strong>License</strong></td>
|
|
@@ -230,7 +230,7 @@ Required output:
|
|
|
230
230
|
5. Data model and storage choices
|
|
231
231
|
6. Auth/security considerations
|
|
232
232
|
7. DX/UX considerations
|
|
233
|
-
8. Delivery plan for v0.1.
|
|
233
|
+
8. Delivery plan for v0.1.7
|
|
234
234
|
9. Risks and trade-offs
|
|
235
235
|
10. Decision log
|
|
236
236
|
11. Exact next trigger to run after this
|
|
@@ -298,9 +298,33 @@ Recommended starter endpoints:
|
|
|
298
298
|
- `https://gitmcp.io/dzharii/awesome-typescript`
|
|
299
299
|
- `https://gitmcp.io/sbilly/awesome-security`
|
|
300
300
|
|
|
301
|
+
Core discovery standard:
|
|
302
|
+
|
|
303
|
+
- `https://ossium.live/home`
|
|
304
|
+
- use Ossium to discover trending OSS, curated repos, YC-backed repos, GSoC orgs, and contribution opportunities faster
|
|
305
|
+
- `https://trendshift.io/`
|
|
306
|
+
- use Trendshift for rising GitHub engagement and topic-driven trend discovery
|
|
307
|
+
- `https://devhunt.org/`
|
|
308
|
+
- use Dev Hunt for recently launched developer tools and current dev-tool discovery
|
|
309
|
+
- `https://libraries.io/`
|
|
310
|
+
- use Libraries.io for package and dependency metadata, with caution because its public data is scraped and not validated/curated for accuracy
|
|
311
|
+
- `https://openhub.net/`
|
|
312
|
+
- use Open Hub for project activity, contributor, popularity, and comparison signals
|
|
313
|
+
- `https://www.opensourceprojects.dev/`
|
|
314
|
+
- use Open-source Projects for curated OSS discovery and detailed project writeups
|
|
315
|
+
- treat all of these as discovery acceleration, then convert promising finds into exact upstream GitMCP mappings and official-doc checks for `$sage`
|
|
316
|
+
|
|
317
|
+
Canonical `$sage` order:
|
|
318
|
+
|
|
319
|
+
1. Start with the upstream repo and official docs if you already know them.
|
|
320
|
+
2. Use discovery accelerators only when you need help finding or narrowing candidates.
|
|
321
|
+
3. Map selected candidates to exact upstream GitMCP endpoints.
|
|
322
|
+
4. Verify against upstream repos and official docs before treating anything as approved evidence.
|
|
323
|
+
|
|
301
324
|
> [!IMPORTANT]
|
|
302
325
|
> Verified release evidence must come from repository-form GitMCP endpoints such as `https://gitmcp.io/{owner}/{repo}`.
|
|
303
326
|
> A generic documentation endpoint such as `https://gitmcp.io/docs` does not count as VERIFIED evidence for build unlocking.
|
|
327
|
+
> Discovery surfaces such as Ossium, Trendshift, Dev Hunt, Libraries.io, Open Hub, and Open-source Projects are not substitutes for upstream repo or official-doc verification.
|
|
304
328
|
|
|
305
329
|
### 6. Secondary helper flow outside Codex
|
|
306
330
|
|
|
@@ -563,7 +587,7 @@ Release automation:
|
|
|
563
587
|
| [Plugin README](./plugins/meta-architect/README.md) | plugin distribution surface |
|
|
564
588
|
| [Collaborative Whiteboard Mission](./missions/collaborative-whiteboard/mission.md) | concrete scenario walkthrough |
|
|
565
589
|
| [Release Spec](./docs/release-spec.md) | release and gate policy |
|
|
566
|
-
| [Release Readiness](./docs/qa/release-readiness-0.1.
|
|
590
|
+
| [Release Readiness](./docs/qa/release-readiness-0.1.7.md) | QA evidence for the `v0.1.7` line |
|
|
567
591
|
|
|
568
592
|
## Release Hygiene
|
|
569
593
|
|
package/docs/README.md
CHANGED
package/docs/getting-started.md
CHANGED
|
@@ -74,7 +74,7 @@ Required output:
|
|
|
74
74
|
5. Data model and storage choices
|
|
75
75
|
6. Auth/security considerations
|
|
76
76
|
7. DX/UX considerations
|
|
77
|
-
8. Delivery plan for v0.1.
|
|
77
|
+
8. Delivery plan for v0.1.7
|
|
78
78
|
9. Risks and trade-offs
|
|
79
79
|
10. Decision log
|
|
80
80
|
11. Exact next trigger to run after this
|
|
@@ -205,6 +205,21 @@ Recommended first set:
|
|
|
205
205
|
- `dzharii/awesome-typescript`
|
|
206
206
|
- `sbilly/awesome-security`
|
|
207
207
|
|
|
208
|
+
Core discovery standard:
|
|
209
|
+
- use `https://ossium.live/home` to find trending OSS, curated repos, YC-backed repos, GSoC orgs, and contribution leads faster than browsing GitHub directly
|
|
210
|
+
- use `https://trendshift.io/` to spot repositories with rising engagement and topic momentum
|
|
211
|
+
- use `https://devhunt.org/` to discover newly launched developer tools
|
|
212
|
+
- use `https://libraries.io/` to inspect package/dependency metadata, while remembering its public data is scraped and not validated/curated for accuracy
|
|
213
|
+
- use `https://openhub.net/` to inspect project activity, contributor, popularity, and comparison signals
|
|
214
|
+
- use `https://www.opensourceprojects.dev/` to inspect curated OSS selections and detailed project writeups
|
|
215
|
+
- move any promising discovery result into `mcp/servers.json` as an exact upstream GitMCP repo endpoint before treating it as VERIFIED evidence
|
|
216
|
+
|
|
217
|
+
Canonical `$sage` order:
|
|
218
|
+
- known upstream repo/docs first
|
|
219
|
+
- discovery accelerators second
|
|
220
|
+
- exact GitMCP repo mapping third
|
|
221
|
+
- upstream repo + official-doc verification last
|
|
222
|
+
|
|
208
223
|
See [docs/mcp-setup.md](./mcp-setup.md) for endpoint policy and evidence semantics.
|
|
209
224
|
|
|
210
225
|
## 6. Secondary helper flow
|
package/docs/mcp-setup.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# MCP / GitMCP Setup
|
|
2
2
|
|
|
3
|
-
1.
|
|
4
|
-
2.
|
|
5
|
-
3.
|
|
3
|
+
1. Use approved discovery accelerators when you need to find OSS candidates faster than browsing GitHub directly.
|
|
4
|
+
2. Add repo-specific GitMCP endpoints in `mcp/servers.json` for any project you want to treat as approved evidence.
|
|
5
|
+
3. Confirm categories in `mcp/collections.json`.
|
|
6
|
+
4. Use `https://gitmcp.io/docs` only when no approved exact endpoint exists.
|
|
7
|
+
|
|
8
|
+
## Discovery vs verification
|
|
9
|
+
|
|
10
|
+
Canonical `$sage` order:
|
|
11
|
+
|
|
12
|
+
1. If the upstream repository or official docs are already known, start there first.
|
|
13
|
+
2. If not, use approved discovery accelerators to build a candidate set quickly.
|
|
14
|
+
3. Convert promising candidates into exact upstream repository mappings in `mcp/servers.json`.
|
|
15
|
+
4. Verify the choice against the upstream repo and official docs.
|
|
16
|
+
5. Treat the result as `VERIFIED`, `PARTIAL`, or `UNVERIFIED` based on what was actually proven.
|
|
17
|
+
|
|
18
|
+
The following external discovery surfaces are part of the Meta-Architect discovery standard:
|
|
19
|
+
|
|
20
|
+
- `https://ossium.live/home`
|
|
21
|
+
- use for trending OSS, curated repositories, YC-backed repos, GSoC orgs, and contribution leads
|
|
22
|
+
- `https://trendshift.io/`
|
|
23
|
+
- use for rising GitHub repository engagement, topic-driven exploration, and trend signals
|
|
24
|
+
- `https://devhunt.org/`
|
|
25
|
+
- use for newly launched developer tools and discovery of current dev-tool products
|
|
26
|
+
- `https://libraries.io/`
|
|
27
|
+
- use for package, ecosystem, license, and dependency metadata
|
|
28
|
+
- caution: Libraries.io says its public data is scraped and "not validated, corrected, or curated for accuracy"
|
|
29
|
+
- `https://openhub.net/`
|
|
30
|
+
- use for project activity, contributor, popularity, and comparative OSS project signals
|
|
31
|
+
- `https://www.opensourceprojects.dev/`
|
|
32
|
+
- use for curated open-source project discovery, detailed project writeups, and higher-signal project scouting
|
|
33
|
+
|
|
34
|
+
Use it for:
|
|
35
|
+
- discovering candidate repositories
|
|
36
|
+
- spotting trending or actively curated OSS
|
|
37
|
+
- finding contribution-friendly projects and issue flows
|
|
38
|
+
- finding YC-linked or GSoC-linked OSS leads faster
|
|
39
|
+
- checking package-ecosystem metadata, maintenance signals, and dependency context
|
|
40
|
+
- checking project activity and contributor/comparison signals
|
|
41
|
+
- checking curated project writeups and hand-picked OSS recommendations
|
|
42
|
+
|
|
43
|
+
Do not treat any of these discovery surfaces alone as VERIFIED build-unlocking evidence.
|
|
44
|
+
|
|
45
|
+
To move from discovery to VERIFIED evidence:
|
|
46
|
+
- identify the upstream GitHub repository or official package/docs source from the discovery surface
|
|
47
|
+
- map that repo to an exact `https://gitmcp.io/{owner}/{repo}` endpoint in `mcp/servers.json`
|
|
48
|
+
- validate the choice against the upstream repo and official docs through `$sage`
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
# Release Readiness 0.1.
|
|
1
|
+
# Release Readiness 0.1.7
|
|
2
2
|
|
|
3
3
|
## Production bar
|
|
4
4
|
|
|
5
|
-
`v0.1.
|
|
5
|
+
`v0.1.7` is treated as production only when:
|
|
6
6
|
- the package installs cleanly from the canonical public install command
|
|
7
7
|
- the Codex-hosted runtime path works end to end
|
|
8
8
|
- the helper flow remains valid for scripted verification
|
|
9
|
-
- release docs, package metadata, and workflows all agree on `0.1.
|
|
9
|
+
- release docs, package metadata, and workflows all agree on `0.1.7`
|
|
10
10
|
|
|
11
11
|
Target release state:
|
|
12
|
-
- npm package: `@jstn-sdk/ma@0.1.
|
|
12
|
+
- npm package: `@jstn-sdk/ma@0.1.7`
|
|
13
13
|
- npm registry state: pending publish
|
|
14
|
-
- publishability note: `0.1.
|
|
15
|
-
- git tag: `v0.1.
|
|
16
|
-
- GitHub release: pending publish for `v0.1.
|
|
14
|
+
- publishability note: `0.1.6` is already published, so `0.1.7` is the next publishable package line
|
|
15
|
+
- git tag: `v0.1.7`
|
|
16
|
+
- GitHub release: pending publish for `v0.1.7`
|
|
17
17
|
|
|
18
18
|
## Production checklist
|
|
19
19
|
|
|
20
20
|
- skills-first product identity: PASS
|
|
21
21
|
- package/plugin identity aligned to `@jstn-sdk/ma`: PASS
|
|
22
|
-
- version/tag alignment `0.1.
|
|
22
|
+
- version/tag alignment `0.1.7` / `v0.1.7`: PASS
|
|
23
23
|
- install/uninstall docs aligned: PASS
|
|
24
24
|
- onboarding is concise and sequential: PASS
|
|
25
25
|
- helper command documented as secondary: PASS
|
package/docs/release-spec.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
# v0.1.
|
|
1
|
+
# v0.1.7 Requirements & Rules
|
|
2
2
|
|
|
3
3
|
## Production definition
|
|
4
4
|
|
|
5
|
-
Meta-Architect `v0.1.
|
|
5
|
+
Meta-Architect `v0.1.7` is production only when:
|
|
6
6
|
1. the package/install surface works
|
|
7
7
|
2. the in-session skill workflow from `$arch` through `$build` works
|
|
8
8
|
3. the release evidence matches the actual package and git tag
|
|
9
9
|
|
|
10
|
-
## What `v0.1.
|
|
10
|
+
## What `v0.1.7` must have
|
|
11
11
|
|
|
12
12
|
### 1. Canonical package/runtime path
|
|
13
13
|
|
|
@@ -49,11 +49,11 @@ Canonical state files:
|
|
|
49
49
|
|
|
50
50
|
### 4. Required release evidence
|
|
51
51
|
|
|
52
|
-
- `package.json` version `0.1.
|
|
53
|
-
- git tag `v0.1.
|
|
52
|
+
- `package.json` version `0.1.7`
|
|
53
|
+
- git tag `v0.1.7`
|
|
54
54
|
- `RELEASE.md`
|
|
55
55
|
- `CHANGELOG.md`
|
|
56
|
-
- `docs/qa/release-readiness-0.1.
|
|
56
|
+
- `docs/qa/release-readiness-0.1.7.md`
|
|
57
57
|
- green `npm run release:check`
|
|
58
58
|
|
|
59
59
|
### 5. Dist-tag discipline
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meta-architect",
|
|
3
3
|
"displayName": "Meta-Architect",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"description": "Programmatic architecture and verified engineering skills for Codex-native workflows.",
|
|
6
6
|
"entry": "./README.md",
|
|
7
7
|
"skillsDir": "./skills"
|
|
@@ -105,7 +105,7 @@ When consuming the plugin:
|
|
|
105
105
|
The plugin version should track the release scope of the core repo.
|
|
106
106
|
|
|
107
107
|
For this repository:
|
|
108
|
-
- plugin scope is aligned to Meta-Architect `v0.1.
|
|
108
|
+
- plugin scope is aligned to Meta-Architect `v0.1.7`
|
|
109
109
|
- any breaking contract change should be versioned intentionally
|
|
110
110
|
|
|
111
111
|
The plugin is one distribution surface of the same product, not a separate product line.
|
|
@@ -22,6 +22,8 @@ Run the full Meta-Architect workflow inside Codex. Use this skill when the user
|
|
|
22
22
|
|
|
23
23
|
- Stay inside Codex unless the user explicitly asks for repo-local helper commands.
|
|
24
24
|
- Keep the workflow architecture-first. Do not jump into code before the architecture and review lanes are grounded.
|
|
25
|
+
- Use approved discovery accelerators such as Ossium, Trendshift, Dev Hunt, Libraries.io, Open Hub, and Open-source Projects when you need faster OSS candidate discovery, then validate any promising project through upstream repos and official docs.
|
|
26
|
+
- Keep the `$sage` order explicit: known upstream sources first, discovery accelerators second, exact repo mapping third, approval only after upstream verification.
|
|
25
27
|
- Prefer official docs, upstream repos, and repo-configured GitMCP sources when validating tooling choices.
|
|
26
28
|
- End each lane with a clear result shape: decision, evidence, blockers, and exact next trigger.
|
|
27
29
|
|
|
@@ -19,6 +19,19 @@ Produce:
|
|
|
19
19
|
|
|
20
20
|
## Rules
|
|
21
21
|
|
|
22
|
+
- Follow this order:
|
|
23
|
+
- use known upstream repos and official docs first when they already exist
|
|
24
|
+
- use discovery accelerators to find or narrow candidates
|
|
25
|
+
- map the selected candidate back to an exact upstream repo
|
|
26
|
+
- verify against upstream repos and official docs before approving it
|
|
27
|
+
- Use approved discovery accelerators when you need faster OSS candidate discovery:
|
|
28
|
+
- Ossium (`https://ossium.live/home`) for trending, curated, YC-backed, and GSoC-linked OSS discovery
|
|
29
|
+
- Trendshift (`https://trendshift.io/`) for rising GitHub engagement and topic momentum
|
|
30
|
+
- Dev Hunt (`https://devhunt.org/`) for newly launched developer tools
|
|
31
|
+
- Libraries.io (`https://libraries.io/`) for package/dependency metadata, with caution because its public data is scraped and not validated/curated for accuracy
|
|
32
|
+
- Open Hub (`https://openhub.net/`) for project activity, contributor, and comparison signals
|
|
33
|
+
- Open-source Projects (`https://www.opensourceprojects.dev/`) for curated OSS discovery and detailed project writeups
|
|
22
34
|
- Do not invent package capabilities or maturity claims.
|
|
23
35
|
- Prefer primary sources over summaries when validating technical details.
|
|
36
|
+
- Do not treat discovery listings alone as VERIFIED evidence; promote candidates to upstream repos and official docs before approving them.
|
|
24
37
|
- If the evidence is weak or contradictory, say so clearly and keep the recommendation conditional.
|
|
@@ -22,6 +22,8 @@ Run the full Meta-Architect workflow inside Codex. Use this skill when the user
|
|
|
22
22
|
|
|
23
23
|
- Stay inside Codex unless the user explicitly asks for repo-local helper commands.
|
|
24
24
|
- Keep the workflow architecture-first. Do not jump into code before the architecture and review lanes are grounded.
|
|
25
|
+
- Use approved discovery accelerators such as Ossium, Trendshift, Dev Hunt, Libraries.io, Open Hub, and Open-source Projects when you need faster OSS candidate discovery, then validate any promising project through upstream repos and official docs.
|
|
26
|
+
- Keep the `$sage` order explicit: known upstream sources first, discovery accelerators second, exact repo mapping third, approval only after upstream verification.
|
|
25
27
|
- Prefer official docs, upstream repos, and repo-configured GitMCP sources when validating tooling choices.
|
|
26
28
|
- End each lane with a clear result shape: decision, evidence, blockers, and exact next trigger.
|
|
27
29
|
|
package/skills/sage/SKILL.md
CHANGED
|
@@ -19,6 +19,19 @@ Produce:
|
|
|
19
19
|
|
|
20
20
|
## Rules
|
|
21
21
|
|
|
22
|
+
- Follow this order:
|
|
23
|
+
- use known upstream repos and official docs first when they already exist
|
|
24
|
+
- use discovery accelerators to find or narrow candidates
|
|
25
|
+
- map the selected candidate back to an exact upstream repo
|
|
26
|
+
- verify against upstream repos and official docs before approving it
|
|
27
|
+
- Use approved discovery accelerators when you need faster OSS candidate discovery:
|
|
28
|
+
- Ossium (`https://ossium.live/home`) for trending, curated, YC-backed, and GSoC-linked OSS discovery
|
|
29
|
+
- Trendshift (`https://trendshift.io/`) for rising GitHub engagement and topic momentum
|
|
30
|
+
- Dev Hunt (`https://devhunt.org/`) for newly launched developer tools
|
|
31
|
+
- Libraries.io (`https://libraries.io/`) for package/dependency metadata, with caution because its public data is scraped and not validated/curated for accuracy
|
|
32
|
+
- Open Hub (`https://openhub.net/`) for project activity, contributor, and comparison signals
|
|
33
|
+
- Open-source Projects (`https://www.opensourceprojects.dev/`) for curated OSS discovery and detailed project writeups
|
|
22
34
|
- Do not invent package capabilities or maturity claims.
|
|
23
35
|
- Prefer primary sources over summaries when validating technical details.
|
|
36
|
+
- Do not treat discovery listings alone as VERIFIED evidence; promote candidates to upstream repos and official docs before approving them.
|
|
24
37
|
- If the evidence is weak or contradictory, say so clearly and keep the recommendation conditional.
|
package/src/mcp-live-client.js
CHANGED
package/src/skills.js
CHANGED
|
@@ -508,8 +508,8 @@ export async function runInit() {
|
|
|
508
508
|
path.join(getRepoRoot(), "docs", "release-spec.md"),
|
|
509
509
|
],
|
|
510
510
|
[
|
|
511
|
-
path.join(packageRoot, "docs", "qa", "release-readiness-0.1.
|
|
512
|
-
path.join(getRepoRoot(), "docs", "qa", "release-readiness-0.1.
|
|
511
|
+
path.join(packageRoot, "docs", "qa", "release-readiness-0.1.7.md"),
|
|
512
|
+
path.join(getRepoRoot(), "docs", "qa", "release-readiness-0.1.7.md"),
|
|
513
513
|
],
|
|
514
514
|
];
|
|
515
515
|
|
package/templates/AGENTS.md
CHANGED
|
@@ -71,10 +71,27 @@ If any required field is missing, red, or unverified, the workflow should stop a
|
|
|
71
71
|
|
|
72
72
|
Major technology recommendations must be supported by evidence from configured MCP/GitMCP sources. Do not invent fake repositories, fake endpoints, or unsupported claims.
|
|
73
73
|
|
|
74
|
+
Approved discovery accelerators include:
|
|
75
|
+
- Ossium (`https://ossium.live/home`) for trending OSS, curated repos, YC-backed repos, GSoC orgs, and contribution leads
|
|
76
|
+
- Trendshift (`https://trendshift.io/`) for rising GitHub engagement and topic momentum
|
|
77
|
+
- Dev Hunt (`https://devhunt.org/`) for newly launched developer tools
|
|
78
|
+
- Libraries.io (`https://libraries.io/`) for package/dependency metadata, with caution because its public data is scraped and not validated/curated for accuracy
|
|
79
|
+
- Open Hub (`https://openhub.net/`) for project activity, contributor, popularity, and comparison signals
|
|
80
|
+
- Open-source Projects (`https://www.opensourceprojects.dev/`) for curated OSS discovery and detailed project writeups
|
|
81
|
+
|
|
82
|
+
These discovery accelerators do not replace upstream repo evidence or official docs for approval decisions.
|
|
83
|
+
|
|
84
|
+
Canonical evidence order:
|
|
85
|
+
- prefer known upstream repos and official docs first
|
|
86
|
+
- use discovery accelerators to find or narrow candidates
|
|
87
|
+
- map selected candidates back to exact upstream repositories
|
|
88
|
+
- approve only after upstream repo and official-doc verification
|
|
89
|
+
|
|
74
90
|
### Exact endpoint rule
|
|
75
91
|
|
|
76
92
|
- Prefer repo-specific `https://gitmcp.io/{owner}/{repo}` endpoints
|
|
77
93
|
- Treat `https://gitmcp.io/docs` as fallback policy only, not a normal approved evidence source for build-unlocking decisions
|
|
94
|
+
- Treat discovery accelerators as discovery-only until a candidate is mapped back to an exact upstream repository and validated through approved evidence paths
|
|
78
95
|
|
|
79
96
|
## Logging rule
|
|
80
97
|
|