Initialize community category space
Browse files- README.md +8 -10
- index.html +137 -19
README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
| 1 |
-
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
-
sdk: static
|
| 7 |
-
pinned: false
|
| 8 |
-
---
|
| 9 |
-
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: Saint Errant Digital Society
|
| 3 |
+
emoji: 🏰
|
| 4 |
+
colorFrom: yellow
|
| 5 |
+
colorTo: red
|
| 6 |
+
sdk: static
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
|
|
|
|
|
index.html
CHANGED
|
@@ -1,19 +1,137 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Saint Errant Digital Society — SnapKitty</title>
|
| 7 |
+
<style>
|
| 8 |
+
:root {
|
| 9 |
+
--bg: #0a0a0f; --surface: #111118; --border: #1e1e2e;
|
| 10 |
+
--accent: #8b5cf6; --accent2: #06b6d4; --accent3: #10b981;
|
| 11 |
+
--text: #e2e8f0; --muted: #94a3b8; --dim: #64748b;
|
| 12 |
+
--warn: #f59e0b; --red: #ef4444;
|
| 13 |
+
}
|
| 14 |
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
| 15 |
+
body {
|
| 16 |
+
background: var(--bg); color: var(--text);
|
| 17 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
| 18 |
+
line-height: 1.6;
|
| 19 |
+
}
|
| 20 |
+
.hero {
|
| 21 |
+
text-align: center; padding: 48px 24px 32px; position: relative;
|
| 22 |
+
}
|
| 23 |
+
.hero::before {
|
| 24 |
+
content: ''; position: absolute; inset: 0;
|
| 25 |
+
background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139,92,246,0.10) 0%, transparent 70%);
|
| 26 |
+
pointer-events: none;
|
| 27 |
+
}
|
| 28 |
+
.hero h1 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
|
| 29 |
+
.hero h1 span { color: #f59e0b; }
|
| 30 |
+
.tagline { margin-top: 8px; color: var(--muted); font-size: 0.95rem; max-width: 640px; margin-inline: auto; }
|
| 31 |
+
.breadcrumb {
|
| 32 |
+
text-align: center; margin-top: 12px; font-size: 0.8rem;
|
| 33 |
+
}
|
| 34 |
+
.breadcrumb a { color: var(--accent); text-decoration: none; }
|
| 35 |
+
.breadcrumb a:hover { text-decoration: underline; }
|
| 36 |
+
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px 48px; }
|
| 37 |
+
.repo-grid {
|
| 38 |
+
display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
| 39 |
+
gap: 14px; margin-top: 28px;
|
| 40 |
+
}
|
| 41 |
+
.repo-card {
|
| 42 |
+
background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
|
| 43 |
+
padding: 18px 20px; transition: border-color 0.2s;
|
| 44 |
+
}
|
| 45 |
+
.repo-card:hover { border-color: #f59e0b; }
|
| 46 |
+
.repo-name a {
|
| 47 |
+
color: #f59e0b; text-decoration: none; font-weight: 600; font-size: 0.95rem;
|
| 48 |
+
}
|
| 49 |
+
.repo-name a:hover { text-decoration: underline; }
|
| 50 |
+
.repo-desc { color: var(--muted); font-size: 0.82rem; margin-top: 6px; line-height: 1.5; }
|
| 51 |
+
.repo-langs {
|
| 52 |
+
margin-top: 10px; display: flex; gap: 6px; flex-wrap: wrap;
|
| 53 |
+
}
|
| 54 |
+
.lang-tag {
|
| 55 |
+
padding: 2px 8px; border-radius: 4px; font-size: 0.65rem;
|
| 56 |
+
text-transform: uppercase; letter-spacing: 0.05em;
|
| 57 |
+
background: rgba(139,92,246,0.1); color: var(--dim); border: 1px solid var(--border);
|
| 58 |
+
}
|
| 59 |
+
.gh-link {
|
| 60 |
+
display: inline-block; margin-top: 8px; font-size: 0.75rem;
|
| 61 |
+
color: var(--dim); text-decoration: none;
|
| 62 |
+
}
|
| 63 |
+
.gh-link:hover { color: var(--text); }
|
| 64 |
+
.footer {
|
| 65 |
+
text-align: center; padding: 40px 24px; color: var(--dim); font-size: 0.78rem;
|
| 66 |
+
border-top: 1px solid var(--border); margin-top: 32px;
|
| 67 |
+
}
|
| 68 |
+
@media (max-width: 600px) {
|
| 69 |
+
.hero h1 { font-size: 1.5rem; }
|
| 70 |
+
.repo-grid { grid-template-columns: 1fr; }
|
| 71 |
+
}
|
| 72 |
+
</style>
|
| 73 |
+
</head>
|
| 74 |
+
<body>
|
| 75 |
+
<div class="hero">
|
| 76 |
+
<h1>🏰 <span>Saint Errant Digital Society</span></h1>
|
| 77 |
+
<p class="tagline">Grassroots builder collective organized into guilds: Forge, Cipher, Herald, Prism. Open governance, sealed trust deeds, and community infrastructure.</p>
|
| 78 |
+
<div class="breadcrumb"><a href="https://huggingface.co/spaces/Snapkitty/README">← Back to SnapKitty Collective</a></div>
|
| 79 |
+
</div>
|
| 80 |
+
<div class="container">
|
| 81 |
+
<div class="repo-grid">
|
| 82 |
+
<div class="repo-card">
|
| 83 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/saint-errant">saint-errant</a></div>
|
| 84 |
+
<div class="repo-desc">Non-profit NGO building sovereign digital infrastructure with local LLM reasoning and 11 sovereign agents.</div>
|
| 85 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 86 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/saint-errant">GitHub →</a>
|
| 87 |
+
</div>
|
| 88 |
+
<div class="repo-card">
|
| 89 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/saint-errant-digital-society">saint-errant-digital-society</a></div>
|
| 90 |
+
<div class="repo-desc">Grassroots builder collective organized into guilds: Forge, Cipher, Herald, Prism. Open membership.</div>
|
| 91 |
+
<div class="repo-langs"><span class="lang-tag">markdown</span></div>
|
| 92 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/saint-errant-digital-society">GitHub →</a>
|
| 93 |
+
</div>
|
| 94 |
+
<div class="repo-card">
|
| 95 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-deeds">snapkitty-deeds</a></div>
|
| 96 |
+
<div class="repo-desc">AI governance trust deed system using APL reduction operators with WORM-sealed cryptographic audit chain.</div>
|
| 97 |
+
<div class="repo-langs"><span class="lang-tag">apl</span><span class="lang-tag">python</span></div>
|
| 98 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-deeds">GitHub →</a>
|
| 99 |
+
</div>
|
| 100 |
+
<div class="repo-card">
|
| 101 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/sacm-bridge">sacm-bridge</a></div>
|
| 102 |
+
<div class="repo-desc">SACM bridge for sovereign artifact lifecycle management and compliance tracking.</div>
|
| 103 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 104 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/sacm-bridge">GitHub →</a>
|
| 105 |
+
</div>
|
| 106 |
+
<div class="repo-card">
|
| 107 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/sacm-optimizer">sacm-optimizer</a></div>
|
| 108 |
+
<div class="repo-desc">Optimization layer for SACM artifact pipelines with deterministic scheduling.</div>
|
| 109 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 110 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/sacm-optimizer">GitHub →</a>
|
| 111 |
+
</div>
|
| 112 |
+
<div class="repo-card">
|
| 113 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/sacm-sovereign">sacm-sovereign</a></div>
|
| 114 |
+
<div class="repo-desc">SEIT NGO charter. Immutable ledger for vendor lock-in removal, cryptographic participant records.</div>
|
| 115 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 116 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/sacm-sovereign">GitHub →</a>
|
| 117 |
+
</div>
|
| 118 |
+
<div class="repo-card">
|
| 119 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-tg">snapkitty-tg</a></div>
|
| 120 |
+
<div class="repo-desc">Telegram integration for SnapKitty sovereign agent communication.</div>
|
| 121 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 122 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-tg">GitHub →</a>
|
| 123 |
+
</div>
|
| 124 |
+
<div class="repo-card">
|
| 125 |
+
<div class="repo-name"><a href="https://huggingface.co/Snapkitty/frankenstein">frankenstein</a></div>
|
| 126 |
+
<div class="repo-desc">Experimental composition framework for stitching sovereign components into novel configurations.</div>
|
| 127 |
+
<div class="repo-langs"><span class="lang-tag">python</span></div>
|
| 128 |
+
<a class="gh-link" href="https://github.com/SNAPKITTYWEST/frankenstein">GitHub →</a>
|
| 129 |
+
</div>
|
| 130 |
+
</div>
|
| 131 |
+
</div>
|
| 132 |
+
<div class="footer">
|
| 133 |
+
<p>SnapKitty Collective — Sovereign AI Infrastructure</p>
|
| 134 |
+
<p style="margin-top:6px;">Copyright 2026 Jessica L. Williams / SNAPKITTYWEST</p>
|
| 135 |
+
</div>
|
| 136 |
+
</body>
|
| 137 |
+
</html>
|