Add files using upload-large-folder tool
Browse files- .github/workflows/docs.yml +17 -2
- docs/assets/javascripts/catalog.js +92 -0
- docs/catalog.md +107 -78
- docs/index.md +1 -1
.github/workflows/docs.yml
CHANGED
|
@@ -51,10 +51,25 @@ jobs:
|
|
| 51 |
run: |
|
| 52 |
python -m mkdocs build --strict
|
| 53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 54 |
- name: Upload Pages artifact
|
| 55 |
-
uses: actions/upload-
|
| 56 |
with:
|
| 57 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
|
| 59 |
deploy:
|
| 60 |
name: Deploy to GitHub Pages
|
|
|
|
| 51 |
run: |
|
| 52 |
python -m mkdocs build --strict
|
| 53 |
|
| 54 |
+
- name: Archive Pages artifact
|
| 55 |
+
run: |
|
| 56 |
+
tar \
|
| 57 |
+
--dereference --hard-dereference \
|
| 58 |
+
--directory site \
|
| 59 |
+
-cvf "$RUNNER_TEMP/artifact.tar" \
|
| 60 |
+
--exclude=.git \
|
| 61 |
+
--exclude=.github \
|
| 62 |
+
--exclude=.[^/]* \
|
| 63 |
+
.
|
| 64 |
+
|
| 65 |
- name: Upload Pages artifact
|
| 66 |
+
uses: actions/upload-artifact@v4
|
| 67 |
with:
|
| 68 |
+
name: github-pages
|
| 69 |
+
path: ${{ runner.temp }}/artifact.tar
|
| 70 |
+
retention-days: 1
|
| 71 |
+
if-no-files-found: error
|
| 72 |
+
overwrite: true
|
| 73 |
|
| 74 |
deploy:
|
| 75 |
name: Deploy to GitHub Pages
|
docs/assets/javascripts/catalog.js
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
(function () {
|
| 2 |
+
"use strict";
|
| 3 |
+
|
| 4 |
+
function param(name) {
|
| 5 |
+
return new URLSearchParams(window.location.search).get(name) || "";
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
function selectedTypes(root) {
|
| 9 |
+
return Array.from(root.querySelectorAll(".ctx-catalog-filters input:checked")).map(
|
| 10 |
+
function (input) {
|
| 11 |
+
return input.value;
|
| 12 |
+
}
|
| 13 |
+
);
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
function searchableText(card) {
|
| 17 |
+
return (
|
| 18 |
+
card.getAttribute("data-type") +
|
| 19 |
+
" " +
|
| 20 |
+
card.getAttribute("data-search") +
|
| 21 |
+
" " +
|
| 22 |
+
card.textContent
|
| 23 |
+
).toLowerCase();
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
function render(root) {
|
| 27 |
+
var queryInput = root.querySelector("#ctx-catalog-query");
|
| 28 |
+
var count = root.querySelector("#ctx-catalog-count");
|
| 29 |
+
var cards = Array.from(root.querySelectorAll(".ctx-catalog-card"));
|
| 30 |
+
var selected = new Set(selectedTypes(root));
|
| 31 |
+
var query = (queryInput ? queryInput.value : "").trim().toLowerCase();
|
| 32 |
+
var visible = 0;
|
| 33 |
+
|
| 34 |
+
cards.forEach(function (card) {
|
| 35 |
+
var matchesType = selected.has(card.getAttribute("data-type"));
|
| 36 |
+
var matchesQuery = !query || searchableText(card).indexOf(query) !== -1;
|
| 37 |
+
var show = matchesType && matchesQuery;
|
| 38 |
+
card.hidden = !show;
|
| 39 |
+
if (show) visible += 1;
|
| 40 |
+
});
|
| 41 |
+
|
| 42 |
+
if (count) {
|
| 43 |
+
count.textContent = visible + " tile" + (visible === 1 ? "" : "s") + " shown";
|
| 44 |
+
}
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
function initCatalog() {
|
| 48 |
+
var root = document.querySelector(".ctx-catalog-app");
|
| 49 |
+
if (!root || root.getAttribute("data-catalog-ready") === "true") {
|
| 50 |
+
return;
|
| 51 |
+
}
|
| 52 |
+
root.setAttribute("data-catalog-ready", "true");
|
| 53 |
+
|
| 54 |
+
var queryInput = root.querySelector("#ctx-catalog-query");
|
| 55 |
+
var initialType = param("type");
|
| 56 |
+
var initialQuery = param("q");
|
| 57 |
+
|
| 58 |
+
if (queryInput && initialQuery) {
|
| 59 |
+
queryInput.value = initialQuery;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
if (initialType) {
|
| 63 |
+
root.querySelectorAll(".ctx-catalog-filters input").forEach(function (input) {
|
| 64 |
+
input.checked = input.value === initialType;
|
| 65 |
+
});
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
if (queryInput) {
|
| 69 |
+
queryInput.addEventListener("input", function () {
|
| 70 |
+
render(root);
|
| 71 |
+
});
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
+
root.querySelectorAll(".ctx-catalog-filters input").forEach(function (input) {
|
| 75 |
+
input.addEventListener("change", function () {
|
| 76 |
+
render(root);
|
| 77 |
+
});
|
| 78 |
+
});
|
| 79 |
+
|
| 80 |
+
render(root);
|
| 81 |
+
}
|
| 82 |
+
|
| 83 |
+
if (document.readyState === "loading") {
|
| 84 |
+
document.addEventListener("DOMContentLoaded", initCatalog, { once: true });
|
| 85 |
+
} else {
|
| 86 |
+
initCatalog();
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
if (window.document$ && typeof window.document$.subscribe === "function") {
|
| 90 |
+
window.document$.subscribe(initCatalog);
|
| 91 |
+
}
|
| 92 |
+
})();
|
docs/catalog.md
CHANGED
|
@@ -43,7 +43,113 @@ It is public and always reachable. The full live catalog runs locally inside
|
|
| 43 |
|
| 44 |
<p id="ctx-catalog-count" class="ctx-catalog-muted"></p>
|
| 45 |
|
| 46 |
-
<div id="ctx-catalog-grid" class="ctx-catalog-grid">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
</div>
|
| 48 |
|
| 49 |
<style>
|
|
@@ -108,80 +214,3 @@ It is public and always reachable. The full live catalog runs locally inside
|
|
| 108 |
width: fit-content;
|
| 109 |
}
|
| 110 |
</style>
|
| 111 |
-
|
| 112 |
-
<script>
|
| 113 |
-
const ctxCatalogItems = [
|
| 114 |
-
{type: "skill", title: "Skills", count: "91,464", query: "", tags: "skill prompt workflow testing code review frontend backend security research"},
|
| 115 |
-
{type: "agent", title: "Agents", count: "467", query: "", tags: "agent reviewer planner architect debugger security research"},
|
| 116 |
-
{type: "mcp-server", title: "MCP servers", count: "10,790", query: "", tags: "mcp server github filesystem browser database api cloud"},
|
| 117 |
-
{type: "harness", title: "Harnesses", count: "207", query: "", tags: "harness local model api model llm orchestration verification"},
|
| 118 |
-
{type: "skill", title: "Code review skills", count: "search", query: "code review", tags: "review pr diff quality bug tests"},
|
| 119 |
-
{type: "skill", title: "Testing skills", count: "search", query: "testing", tags: "pytest unit browser smoke regression"},
|
| 120 |
-
{type: "skill", title: "Frontend skills", count: "search", query: "frontend", tags: "ui dashboard css react browser"},
|
| 121 |
-
{type: "agent", title: "Architecture agents", count: "search", query: "architecture", tags: "architecture design refactor planning"},
|
| 122 |
-
{type: "agent", title: "Security agents", count: "search", query: "security", tags: "security audit supply chain secrets"},
|
| 123 |
-
{type: "mcp-server", title: "GitHub MCPs", count: "search", query: "github", tags: "github repo issues pull requests graphql"},
|
| 124 |
-
{type: "mcp-server", title: "Cloud MCPs", count: "search", query: "cloud", tags: "google cloud aws azure deploy"},
|
| 125 |
-
{type: "mcp-server", title: "Browser MCPs", count: "search", query: "browser", tags: "browser automation web scraping"},
|
| 126 |
-
{type: "harness", title: "Local/API model harnesses", count: "search", query: "local model", tags: "local api openai ollama vllm model harness"},
|
| 127 |
-
{type: "harness", title: "Verification harnesses", count: "search", query: "verification", tags: "harness test eval guardrail validate"},
|
| 128 |
-
{type: "harness", title: "Tool-access harnesses", count: "search", query: "tool access", tags: "harness tools sandbox filesystem cloud"},
|
| 129 |
-
];
|
| 130 |
-
|
| 131 |
-
const ctxTypeLabels = {
|
| 132 |
-
"skill": "Skills",
|
| 133 |
-
"agent": "Agents",
|
| 134 |
-
"mcp-server": "MCPs",
|
| 135 |
-
"harness": "Harnesses",
|
| 136 |
-
};
|
| 137 |
-
|
| 138 |
-
function ctxParam(name) {
|
| 139 |
-
return new URLSearchParams(window.location.search).get(name) || "";
|
| 140 |
-
}
|
| 141 |
-
|
| 142 |
-
function ctxSelectedTypes() {
|
| 143 |
-
return Array.from(document.querySelectorAll(".ctx-catalog-filters input:checked")).map((el) => el.value);
|
| 144 |
-
}
|
| 145 |
-
|
| 146 |
-
function ctxPublicCatalogUrl(type, query) {
|
| 147 |
-
const params = new URLSearchParams();
|
| 148 |
-
if (type) params.set("type", type);
|
| 149 |
-
if (query) params.set("q", query);
|
| 150 |
-
const suffix = params.toString();
|
| 151 |
-
return "./" + (suffix ? "?" + suffix : "");
|
| 152 |
-
}
|
| 153 |
-
|
| 154 |
-
function ctxRenderCatalog() {
|
| 155 |
-
const query = document.getElementById("ctx-catalog-query").value.trim().toLowerCase();
|
| 156 |
-
const selected = new Set(ctxSelectedTypes());
|
| 157 |
-
const grid = document.getElementById("ctx-catalog-grid");
|
| 158 |
-
const items = ctxCatalogItems.filter((item) => {
|
| 159 |
-
const hay = `${item.type} ${item.title} ${item.query} ${item.tags}`.toLowerCase();
|
| 160 |
-
return selected.has(item.type) && (!query || hay.includes(query));
|
| 161 |
-
});
|
| 162 |
-
grid.innerHTML = items.map((item) => {
|
| 163 |
-
const launchQuery = query || item.query;
|
| 164 |
-
const href = ctxPublicCatalogUrl(item.type, launchQuery);
|
| 165 |
-
return `<article class="ctx-catalog-card">
|
| 166 |
-
<span class="ctx-catalog-pill">${ctxTypeLabels[item.type]}</span>
|
| 167 |
-
<h3>${item.title}</h3>
|
| 168 |
-
<p class="ctx-catalog-muted">${item.count === "search" ? "Filtered catalog launcher" : item.count + " entities"}</p>
|
| 169 |
-
<a class="md-button" href="${href}">Filter tiles</a>
|
| 170 |
-
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 171 |
-
</article>`;
|
| 172 |
-
}).join("");
|
| 173 |
-
document.getElementById("ctx-catalog-count").textContent = `${items.length} tiles shown`;
|
| 174 |
-
}
|
| 175 |
-
|
| 176 |
-
const initialType = ctxParam("type");
|
| 177 |
-
const initialQuery = ctxParam("q");
|
| 178 |
-
if (initialQuery) document.getElementById("ctx-catalog-query").value = initialQuery;
|
| 179 |
-
if (initialType) {
|
| 180 |
-
document.querySelectorAll(".ctx-catalog-filters input").forEach((el) => {
|
| 181 |
-
el.checked = el.value === initialType;
|
| 182 |
-
});
|
| 183 |
-
}
|
| 184 |
-
document.getElementById("ctx-catalog-query").addEventListener("input", ctxRenderCatalog);
|
| 185 |
-
document.querySelectorAll(".ctx-catalog-filters input").forEach((el) => el.addEventListener("change", ctxRenderCatalog));
|
| 186 |
-
ctxRenderCatalog();
|
| 187 |
-
</script>
|
|
|
|
| 43 |
|
| 44 |
<p id="ctx-catalog-count" class="ctx-catalog-muted"></p>
|
| 45 |
|
| 46 |
+
<div id="ctx-catalog-grid" class="ctx-catalog-grid">
|
| 47 |
+
<article class="ctx-catalog-card" data-type="skill" data-search="skill prompt workflow testing code review frontend backend security research">
|
| 48 |
+
<span class="ctx-catalog-pill">Skills</span>
|
| 49 |
+
<h3>Skills</h3>
|
| 50 |
+
<p class="ctx-catalog-muted">91,464 entities</p>
|
| 51 |
+
<a class="md-button" href="./?type=skill">Filter tiles</a>
|
| 52 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 53 |
+
</article>
|
| 54 |
+
<article class="ctx-catalog-card" data-type="agent" data-search="agent reviewer planner architect debugger security research">
|
| 55 |
+
<span class="ctx-catalog-pill">Agents</span>
|
| 56 |
+
<h3>Agents</h3>
|
| 57 |
+
<p class="ctx-catalog-muted">467 entities</p>
|
| 58 |
+
<a class="md-button" href="./?type=agent">Filter tiles</a>
|
| 59 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 60 |
+
</article>
|
| 61 |
+
<article class="ctx-catalog-card" data-type="mcp-server" data-search="mcp server github filesystem browser database api cloud">
|
| 62 |
+
<span class="ctx-catalog-pill">MCPs</span>
|
| 63 |
+
<h3>MCP servers</h3>
|
| 64 |
+
<p class="ctx-catalog-muted">10,790 entities</p>
|
| 65 |
+
<a class="md-button" href="./?type=mcp-server">Filter tiles</a>
|
| 66 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 67 |
+
</article>
|
| 68 |
+
<article class="ctx-catalog-card" data-type="harness" data-search="harness local model api model llm orchestration verification">
|
| 69 |
+
<span class="ctx-catalog-pill">Harnesses</span>
|
| 70 |
+
<h3>Harnesses</h3>
|
| 71 |
+
<p class="ctx-catalog-muted">207 entities</p>
|
| 72 |
+
<a class="md-button" href="./?type=harness">Filter tiles</a>
|
| 73 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 74 |
+
</article>
|
| 75 |
+
<article class="ctx-catalog-card" data-type="skill" data-search="code review review pr diff quality bug tests">
|
| 76 |
+
<span class="ctx-catalog-pill">Skills</span>
|
| 77 |
+
<h3>Code review skills</h3>
|
| 78 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 79 |
+
<a class="md-button" href="./?type=skill&q=code+review">Filter tiles</a>
|
| 80 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 81 |
+
</article>
|
| 82 |
+
<article class="ctx-catalog-card" data-type="skill" data-search="testing pytest unit browser smoke regression">
|
| 83 |
+
<span class="ctx-catalog-pill">Skills</span>
|
| 84 |
+
<h3>Testing skills</h3>
|
| 85 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 86 |
+
<a class="md-button" href="./?type=skill&q=testing">Filter tiles</a>
|
| 87 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 88 |
+
</article>
|
| 89 |
+
<article class="ctx-catalog-card" data-type="skill" data-search="frontend ui dashboard css react browser">
|
| 90 |
+
<span class="ctx-catalog-pill">Skills</span>
|
| 91 |
+
<h3>Frontend skills</h3>
|
| 92 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 93 |
+
<a class="md-button" href="./?type=skill&q=frontend">Filter tiles</a>
|
| 94 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 95 |
+
</article>
|
| 96 |
+
<article class="ctx-catalog-card" data-type="agent" data-search="architecture design refactor planning">
|
| 97 |
+
<span class="ctx-catalog-pill">Agents</span>
|
| 98 |
+
<h3>Architecture agents</h3>
|
| 99 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 100 |
+
<a class="md-button" href="./?type=agent&q=architecture">Filter tiles</a>
|
| 101 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 102 |
+
</article>
|
| 103 |
+
<article class="ctx-catalog-card" data-type="agent" data-search="security audit supply chain secrets">
|
| 104 |
+
<span class="ctx-catalog-pill">Agents</span>
|
| 105 |
+
<h3>Security agents</h3>
|
| 106 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 107 |
+
<a class="md-button" href="./?type=agent&q=security">Filter tiles</a>
|
| 108 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 109 |
+
</article>
|
| 110 |
+
<article class="ctx-catalog-card" data-type="mcp-server" data-search="github repo issues pull requests graphql">
|
| 111 |
+
<span class="ctx-catalog-pill">MCPs</span>
|
| 112 |
+
<h3>GitHub MCPs</h3>
|
| 113 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 114 |
+
<a class="md-button" href="./?type=mcp-server&q=github">Filter tiles</a>
|
| 115 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 116 |
+
</article>
|
| 117 |
+
<article class="ctx-catalog-card" data-type="mcp-server" data-search="cloud google cloud aws azure deploy">
|
| 118 |
+
<span class="ctx-catalog-pill">MCPs</span>
|
| 119 |
+
<h3>Cloud MCPs</h3>
|
| 120 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 121 |
+
<a class="md-button" href="./?type=mcp-server&q=cloud">Filter tiles</a>
|
| 122 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 123 |
+
</article>
|
| 124 |
+
<article class="ctx-catalog-card" data-type="mcp-server" data-search="browser automation web scraping">
|
| 125 |
+
<span class="ctx-catalog-pill">MCPs</span>
|
| 126 |
+
<h3>Browser MCPs</h3>
|
| 127 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 128 |
+
<a class="md-button" href="./?type=mcp-server&q=browser">Filter tiles</a>
|
| 129 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 130 |
+
</article>
|
| 131 |
+
<article class="ctx-catalog-card" data-type="harness" data-search="local api openai ollama vllm model harness">
|
| 132 |
+
<span class="ctx-catalog-pill">Harnesses</span>
|
| 133 |
+
<h3>Local/API model harnesses</h3>
|
| 134 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 135 |
+
<a class="md-button" href="./?type=harness&q=local+model">Filter tiles</a>
|
| 136 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 137 |
+
</article>
|
| 138 |
+
<article class="ctx-catalog-card" data-type="harness" data-search="harness test eval guardrail validate verification">
|
| 139 |
+
<span class="ctx-catalog-pill">Harnesses</span>
|
| 140 |
+
<h3>Verification harnesses</h3>
|
| 141 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 142 |
+
<a class="md-button" href="./?type=harness&q=verification">Filter tiles</a>
|
| 143 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 144 |
+
</article>
|
| 145 |
+
<article class="ctx-catalog-card" data-type="harness" data-search="harness tools sandbox filesystem cloud tool access">
|
| 146 |
+
<span class="ctx-catalog-pill">Harnesses</span>
|
| 147 |
+
<h3>Tool-access harnesses</h3>
|
| 148 |
+
<p class="ctx-catalog-muted">Filtered catalog launcher</p>
|
| 149 |
+
<a class="md-button" href="./?type=harness&q=tool+access">Filter tiles</a>
|
| 150 |
+
<a class="md-button" href="../dashboard/#catalog-badge-links">Open full catalog locally</a>
|
| 151 |
+
</article>
|
| 152 |
+
</div>
|
| 153 |
</div>
|
| 154 |
|
| 155 |
<style>
|
|
|
|
| 214 |
width: fit-content;
|
| 215 |
}
|
| 216 |
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
docs/index.md
CHANGED
|
@@ -202,7 +202,7 @@ ones are flagged. New ones self-ingest.
|
|
| 202 |
---
|
| 203 |
|
| 204 |
**v1.0.11** — MIT, CI-matrixed (Ubuntu 3.12 plus Windows/macOS 3.11/3.12),
|
| 205 |
-
3,
|
| 206 |
`ctx-monitor` (local dashboard with graph + wiki + load/unload for
|
| 207 |
skills, agents, and MCP servers, plus Harness Setup for user-owned LLMs),
|
| 208 |
`ctx-incremental-attach`, `ctx-incremental-shadow`, `ctx-dedup-check`
|
|
|
|
| 202 |
---
|
| 203 |
|
| 204 |
**v1.0.11** — MIT, CI-matrixed (Ubuntu 3.12 plus Windows/macOS 3.11/3.12),
|
| 205 |
+
3,929 tests collected. Ships console scripts including `ctx-init`,
|
| 206 |
`ctx-monitor` (local dashboard with graph + wiki + load/unload for
|
| 207 |
skills, agents, and MCP servers, plus Harness Setup for user-owned LLMs),
|
| 208 |
`ctx-incremental-attach`, `ctx-incremental-shadow`, `ctx-dedup-check`
|