SNAPKITTYWEST commited on
Commit
bd9677b
·
verified ·
1 Parent(s): d0181dd

Initialize infrastructure-and-tools category space

Browse files
Files changed (2) hide show
  1. README.md +8 -10
  2. index.html +209 -19
README.md CHANGED
@@ -1,10 +1,8 @@
1
- ---
2
- title: Infrastructure And Tools
3
- emoji: 🌍
4
- colorFrom: pink
5
- colorTo: gray
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: Infrastructure and Tools
3
+ emoji: 🔧
4
+ colorFrom: blue
5
+ colorTo: gray
6
+ sdk: static
7
+ pinned: false
8
+ ---
 
 
index.html CHANGED
@@ -1,19 +1,209 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>Infrastructure and Tools — 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: #64748b; }
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: #64748b; }
46
+ .repo-name a {
47
+ color: #64748b; 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>&#x1F527; <span>Infrastructure and Tools</span></h1>
77
+ <p class="tagline">MCP servers, IDEs, OCR, browsers, harnesses, and development tools. The operational layer of the sovereign stack.</p>
78
+ <div class="breadcrumb"><a href="https://huggingface.co/spaces/Snapkitty/README">&larr; 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/snapkitty-mcp">snapkitty-mcp</a></div>
84
+ <div class="repo-desc">MCP server exposing SnapKitty core: WORM sealing, agent building, Ada contracts, SSM injection.</div>
85
+ <div class="repo-langs"><span class="lang-tag">typescript</span></div>
86
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-mcp">GitHub &rarr;</a>
87
+ </div>
88
+ <div class="repo-card">
89
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-mcp">sovereign-mcp</a></div>
90
+ <div class="repo-desc">Provider-independent Model Context Protocol. ERE verification gates, Ed25519 signing, WORM receipts.</div>
91
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
92
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-mcp">GitHub &rarr;</a>
93
+ </div>
94
+ <div class="repo-card">
95
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/ortho32-mcp">ortho32-mcp</a></div>
96
+ <div class="repo-desc">MCP interface for ORTHO-32-T deterministic compute fabric.</div>
97
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
98
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/ortho32-mcp">GitHub &rarr;</a>
99
+ </div>
100
+ <div class="repo-card">
101
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/ortho32-sdk-java">ortho32-sdk-java</a></div>
102
+ <div class="repo-desc">Java SDK for ORTHO-32-T fabric integration and deterministic execution.</div>
103
+ <div class="repo-langs"><span class="lang-tag">java</span></div>
104
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/ortho32-sdk-java">GitHub &rarr;</a>
105
+ </div>
106
+ <div class="repo-card">
107
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-ide">sovereign-ide</a></div>
108
+ <div class="repo-desc">16-layer Fortran 2018 starter kit for sovereign IDE with quantum engines and WASM browser deployment.</div>
109
+ <div class="repo-langs"><span class="lang-tag">fortran</span><span class="lang-tag">wasm</span></div>
110
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-ide">GitHub &rarr;</a>
111
+ </div>
112
+ <div class="repo-card">
113
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-ide-extensions">sovereign-ide-extensions</a></div>
114
+ <div class="repo-desc">VS Code extensions for MAGMA protocol governance, code sealing, WORM chain status.</div>
115
+ <div class="repo-langs"><span class="lang-tag">typescript</span></div>
116
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-ide-extensions">GitHub &rarr;</a>
117
+ </div>
118
+ <div class="repo-card">
119
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/abzu-sovereign-ide">abzu-sovereign-ide</a></div>
120
+ <div class="repo-desc">ABZU checkpoint IDE for sovereign development. Context management across sessions.</div>
121
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
122
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/abzu-sovereign-ide">GitHub &rarr;</a>
123
+ </div>
124
+ <div class="repo-card">
125
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-context-tools">sovereign-context-tools</a></div>
126
+ <div class="repo-desc">Three-component digital masonry: EDUALC linter, ABZU garbage collector, Bifrost state packet.</div>
127
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
128
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-context-tools">GitHub &rarr;</a>
129
+ </div>
130
+ <div class="repo-card">
131
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/git-command-center">git-command-center</a></div>
132
+ <div class="repo-desc">Visual git operations dashboard for managing sovereign repository fleet.</div>
133
+ <div class="repo-langs"><span class="lang-tag">javascript</span></div>
134
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/git-command-center">GitHub &rarr;</a>
135
+ </div>
136
+ <div class="repo-card">
137
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-ocr">snapkitty-ocr</a></div>
138
+ <div class="repo-desc">Android OCR app: handwritten notebooks into THE BOOK digital corpus. SHA-256 sealing.</div>
139
+ <div class="repo-langs"><span class="lang-tag">kotlin</span><span class="lang-tag">android</span></div>
140
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-ocr">GitHub &rarr;</a>
141
+ </div>
142
+ <div class="repo-card">
143
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/kittybrowse">kittybrowse</a></div>
144
+ <div class="repo-desc">Sovereign web browser with built-in verification and sealed browsing receipts.</div>
145
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
146
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/kittybrowse">GitHub &rarr;</a>
147
+ </div>
148
+ <div class="repo-card">
149
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/SNAPKIT">SNAPKIT</a></div>
150
+ <div class="repo-desc">Tools catalog for the SnapKitty ecosystem. Index of all available utilities.</div>
151
+ <div class="repo-langs"><span class="lang-tag">markdown</span></div>
152
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/SNAPKIT">GitHub &rarr;</a>
153
+ </div>
154
+ <div class="repo-card">
155
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/market-scope">market-scope</a></div>
156
+ <div class="repo-desc">Market analysis and scoping tool for sovereign AI positioning.</div>
157
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
158
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/market-scope">GitHub &rarr;</a>
159
+ </div>
160
+ <div class="repo-card">
161
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/ledge">ledge</a></div>
162
+ <div class="repo-desc">Ledger infrastructure for sovereign record keeping and audit trails.</div>
163
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
164
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/ledge">GitHub &rarr;</a>
165
+ </div>
166
+ <div class="repo-card">
167
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/rowm-polymorphic-notebook">rowm-polymorphic-notebook</a></div>
168
+ <div class="repo-desc">Polymorphic notebook format: code, proofs, and prose in a single sealed document.</div>
169
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
170
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/rowm-polymorphic-notebook">GitHub &rarr;</a>
171
+ </div>
172
+ <div class="repo-card">
173
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/gitworld">gitworld</a></div>
174
+ <div class="repo-desc">Visual git world explorer with cinematic asset pipeline.</div>
175
+ <div class="repo-langs"><span class="lang-tag">javascript</span></div>
176
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/gitworld">GitHub &rarr;</a>
177
+ </div>
178
+ <div class="repo-card">
179
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/myapplication">myapplication</a></div>
180
+ <div class="repo-desc">Application scaffold for sovereign mobile and desktop deployment.</div>
181
+ <div class="repo-langs"><span class="lang-tag">kotlin</span></div>
182
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/myapplication">GitHub &rarr;</a>
183
+ </div>
184
+ <div class="repo-card">
185
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/sovereign-harness">sovereign-harness</a></div>
186
+ <div class="repo-desc">Unified entry point for sovereign AI stack. One-line bash/PowerShell installer, browser-first UI.</div>
187
+ <div class="repo-langs"><span class="lang-tag">python</span><span class="lang-tag">bash</span></div>
188
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/sovereign-harness">GitHub &rarr;</a>
189
+ </div>
190
+ <div class="repo-card">
191
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/claudes-harness">claudes-harness</a></div>
192
+ <div class="repo-desc">Harness integration for Claude with sovereign verification and sealed interaction receipts.</div>
193
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
194
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/claudes-harness">GitHub &rarr;</a>
195
+ </div>
196
+ <div class="repo-card">
197
+ <div class="repo-name"><a href="https://huggingface.co/Snapkitty/snapkitty-harness">snapkitty-harness</a></div>
198
+ <div class="repo-desc">Core SnapKitty execution harness with deterministic pipeline and WORM audit chain.</div>
199
+ <div class="repo-langs"><span class="lang-tag">python</span></div>
200
+ <a class="gh-link" href="https://github.com/SNAPKITTYWEST/snapkitty-harness">GitHub &rarr;</a>
201
+ </div>
202
+ </div>
203
+ </div>
204
+ <div class="footer">
205
+ <p>SnapKitty Collective &mdash; Sovereign AI Infrastructure</p>
206
+ <p style="margin-top:6px;">Copyright 2026 Jessica L. Williams / SNAPKITTYWEST</p>
207
+ </div>
208
+ </body>
209
+ </html>