add index.html landing page
Dark theme, shows harness concept (identity, memory, skills, tools, git+3D, guardrails), lists all posts and skills with cards. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
+401
@@ -0,0 +1,401 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Tinqs Studio Blog — Agent Harness for Game Dev</title>
|
||||
<meta name="description" content="Engineering blog and AI agent skills from Tinqs Studio — a game development platform with git hosting, 3D preview, and creative AI pipelines.">
|
||||
<meta property="og:title" content="Tinqs Studio Blog">
|
||||
<meta property="og:description" content="Posts and AI agent skills from the team building Tinqs Studio — an agent harness for game dev.">
|
||||
<meta property="og:image" content="https://www.tinqs.com/img/og-cover.jpg">
|
||||
<meta property="og:type" content="website">
|
||||
<style>
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
:root {
|
||||
--bg: #0e0e10;
|
||||
--surface: #18181b;
|
||||
--surface-hover: #1e1e22;
|
||||
--border: #2a2a2e;
|
||||
--text: #e4e4e7;
|
||||
--text-muted: #a1a1aa;
|
||||
--accent: #f59e0b;
|
||||
--accent-dim: #b45309;
|
||||
--link: #60a5fa;
|
||||
--tag-bg: #27272a;
|
||||
--tag-text: #d4d4d8;
|
||||
--skill-accent: #34d399;
|
||||
--font-mono: 'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
|
||||
--font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-sans);
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.6;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
a { color: var(--link); text-decoration: none; transition: color 0.15s; }
|
||||
a:hover { color: var(--accent); }
|
||||
|
||||
/* --- Header --- */
|
||||
.header {
|
||||
border-bottom: 1px solid var(--border);
|
||||
padding: 2rem 0;
|
||||
}
|
||||
.header-inner {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 0 1.5rem;
|
||||
}
|
||||
.logo {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
color: var(--accent);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
.logo span { color: var(--text-muted); font-weight: 400; }
|
||||
.nav-links {
|
||||
margin-top: 0.5rem;
|
||||
display: flex;
|
||||
gap: 1.5rem;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
.nav-links a { color: var(--text-muted); }
|
||||
.nav-links a:hover { color: var(--text); }
|
||||
|
||||
/* --- Hero --- */
|
||||
.hero {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 3.5rem 1.5rem 2.5rem;
|
||||
}
|
||||
.hero h1 {
|
||||
font-size: 2rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.hero h1 em {
|
||||
font-style: normal;
|
||||
color: var(--accent);
|
||||
}
|
||||
.hero p {
|
||||
font-size: 1.05rem;
|
||||
color: var(--text-muted);
|
||||
max-width: 640px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
.hero p + p { margin-top: 0.75rem; }
|
||||
|
||||
/* --- Harness diagram --- */
|
||||
.harness {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 0 1.5rem 2.5rem;
|
||||
}
|
||||
.harness-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
||||
gap: 0.75rem;
|
||||
}
|
||||
.harness-item {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
padding: 1rem 1.1rem;
|
||||
text-align: center;
|
||||
}
|
||||
.harness-item .icon {
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 0.4rem;
|
||||
display: block;
|
||||
}
|
||||
.harness-item .label {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
color: var(--accent);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
.harness-item .desc {
|
||||
font-size: 0.78rem;
|
||||
color: var(--text-muted);
|
||||
margin-top: 0.25rem;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/* --- Sections --- */
|
||||
.section {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 0 1.5rem 3rem;
|
||||
}
|
||||
.section-title {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.1em;
|
||||
margin-bottom: 1.25rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
/* --- Post cards --- */
|
||||
.post-list { display: flex; flex-direction: column; gap: 0.5rem; }
|
||||
.post-card {
|
||||
display: block;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
padding: 1.1rem 1.3rem;
|
||||
transition: background 0.15s, border-color 0.15s;
|
||||
color: var(--text);
|
||||
}
|
||||
.post-card:hover {
|
||||
background: var(--surface-hover);
|
||||
border-color: var(--accent-dim);
|
||||
color: var(--text);
|
||||
}
|
||||
.post-card .post-title {
|
||||
font-weight: 600;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
.post-card .post-excerpt {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.5;
|
||||
}
|
||||
.post-card .post-date {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.72rem;
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
/* --- Skill cards --- */
|
||||
.skill-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
||||
gap: 0.75rem;
|
||||
}
|
||||
.skill-card {
|
||||
display: block;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
padding: 1.1rem 1.3rem;
|
||||
transition: background 0.15s, border-color 0.15s;
|
||||
color: var(--text);
|
||||
}
|
||||
.skill-card:hover {
|
||||
background: var(--surface-hover);
|
||||
border-color: #065f46;
|
||||
color: var(--text);
|
||||
}
|
||||
.skill-card .skill-name {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: var(--skill-accent);
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
.skill-card .skill-desc {
|
||||
font-size: 0.82rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* --- What are skills --- */
|
||||
.callout {
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-left: 3px solid var(--accent);
|
||||
border-radius: 8px;
|
||||
padding: 1.25rem 1.5rem;
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
.callout h3 {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
.callout p {
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.6;
|
||||
}
|
||||
.callout code {
|
||||
font-family: var(--font-mono);
|
||||
font-size: 0.8rem;
|
||||
background: var(--tag-bg);
|
||||
padding: 0.15em 0.4em;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
/* --- Footer --- */
|
||||
.footer {
|
||||
border-top: 1px solid var(--border);
|
||||
padding: 2rem 0;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
.footer-inner {
|
||||
max-width: 860px;
|
||||
margin: 0 auto;
|
||||
padding: 0 1.5rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.75rem;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
.footer a { color: var(--text-muted); }
|
||||
.footer a:hover { color: var(--text); }
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.hero h1 { font-size: 1.5rem; }
|
||||
.harness-grid { grid-template-columns: repeat(2, 1fr); }
|
||||
.skill-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<div class="header-inner">
|
||||
<div class="logo">TINQS STUDIO <span>/ blog</span></div>
|
||||
<nav class="nav-links">
|
||||
<a href="https://tinqs.com">Platform</a>
|
||||
<a href="#posts">Posts</a>
|
||||
<a href="#skills">Skills</a>
|
||||
<a href="https://tinqs.com/tinqs/blog">Source</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="hero">
|
||||
<h1>An <em>agent harness</em> for game development</h1>
|
||||
<p>Tinqs Studio is a game development platform built on a Gitea fork. It gives AI agents identity, memory, skills, and tools — so a small team can build games at scale.</p>
|
||||
<p>This repo contains our engineering blog and the AI agent skill files that power our creative pipeline. Everything is open, CC BY 4.0.</p>
|
||||
</section>
|
||||
|
||||
<section class="harness">
|
||||
<div class="harness-grid">
|
||||
<div class="harness-item">
|
||||
<span class="icon">≡</span>
|
||||
<div class="label">Identity</div>
|
||||
<div class="desc">Soul files give agents persistent values and context</div>
|
||||
</div>
|
||||
<div class="harness-item">
|
||||
<span class="icon">◗</span>
|
||||
<div class="label">Memory</div>
|
||||
<div class="desc">Cross-session knowledge in markdown, versioned in git</div>
|
||||
</div>
|
||||
<div class="harness-item">
|
||||
<span class="icon">⚙</span>
|
||||
<div class="label">Skills</div>
|
||||
<div class="desc">Teachable playbooks for art, video, 3D, and more</div>
|
||||
</div>
|
||||
<div class="harness-item">
|
||||
<span class="icon">〉</span>
|
||||
<div class="label">CLI Tools</div>
|
||||
<div class="desc">Screenshots, vision, health checks, identity loading</div>
|
||||
</div>
|
||||
<div class="harness-item">
|
||||
<span class="icon">◫</span>
|
||||
<div class="label">Git + 3D</div>
|
||||
<div class="desc">LFS-first hosting with in-browser 3D asset preview</div>
|
||||
</div>
|
||||
<div class="harness-item">
|
||||
<span class="icon">◆</span>
|
||||
<div class="label">Guardrails</div>
|
||||
<div class="desc">Human-in-the-loop approval for merges and deploys</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section" id="posts">
|
||||
<div class="section-title">Posts</div>
|
||||
<div class="post-list">
|
||||
<a class="post-card" href="posts/agent-harness.md">
|
||||
<div class="post-date">2026-05-25</div>
|
||||
<div class="post-title">Tinqs Studio Is an Agent Harness for Game Dev</div>
|
||||
<div class="post-excerpt">An agent harness gives AI agents identity, memory, tools, and guardrails. Tinqs Studio is one built for game development.</div>
|
||||
</a>
|
||||
<a class="post-card" href="posts/fal-image-generation.md">
|
||||
<div class="post-date">2026-05-25</div>
|
||||
<div class="post-title">AI Art at Scale: Using fal.ai Flux for Game Asset Generation</div>
|
||||
<div class="post-excerpt">We generate concept art, trailer frames, and UI icons with fal.ai Flux at $0.01 per image. The 4-layer prompt pattern that makes it work.</div>
|
||||
</a>
|
||||
<a class="post-card" href="posts/godot-optimisation.md">
|
||||
<div class="post-date">2026-05-22</div>
|
||||
<div class="post-title">Streaming a 12km Archipelago in Godot 4</div>
|
||||
<div class="post-excerpt">Four streaming layers, async resource loading, memory-safe caches, and zero leaks. A 12km open world in Godot 4 with C#.</div>
|
||||
</a>
|
||||
<a class="post-card" href="posts/forking-gitea.md">
|
||||
<div class="post-date">2026-05-20</div>
|
||||
<div class="post-title">Why We Forked Gitea and Built Tinqs Studio</div>
|
||||
<div class="post-excerpt">GitHub doesn't understand game dev. We forked Gitea for 3D asset preview, LFS-first workflows, and project management for game teams.</div>
|
||||
</a>
|
||||
<a class="post-card" href="posts/studio-cli.md">
|
||||
<div class="post-date">2026-05-18</div>
|
||||
<div class="post-title">One Binary to Rule Them All: Building a Studio CLI</div>
|
||||
<div class="post-excerpt">A single Go binary that gives AI agents context about who you are, what machine you're on, and what services are reachable.</div>
|
||||
</a>
|
||||
<a class="post-card" href="posts/agentic-workflow.md">
|
||||
<div class="post-date">2026-03-06</div>
|
||||
<div class="post-title">How a Small Game Studio Runs on AI Agents</div>
|
||||
<div class="post-excerpt">Soul files, skill playbooks, and markdown as the universal API. How a 4-person indie studio operates at 10x scale.</div>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section" id="skills">
|
||||
<div class="section-title">AI Agent Skills</div>
|
||||
<div class="skill-grid">
|
||||
<a class="skill-card" href="skills/image-generation.md">
|
||||
<div class="skill-name">image-generation</div>
|
||||
<div class="skill-desc">Generate game art with fal.ai Flux models. 4-layer prompt pattern, model comparison, API examples.</div>
|
||||
</a>
|
||||
<a class="skill-card" href="skills/concept-art-pipeline.md">
|
||||
<div class="skill-name">concept-art-pipeline</div>
|
||||
<div class="skill-desc">End-to-end workflow from design brief through 2D concept art to 3D model export.</div>
|
||||
</a>
|
||||
<a class="skill-card" href="skills/sora2-video.md">
|
||||
<div class="skill-name">sora2-video</div>
|
||||
<div class="skill-desc">Generate trailer clips and cinematics with OpenAI Sora 2. API workflow and cost management.</div>
|
||||
</a>
|
||||
<a class="skill-card" href="skills/tripo-browser-workflow.md">
|
||||
<div class="skill-name">tripo-3d</div>
|
||||
<div class="skill-desc">Text-to-3D and image-to-3D model generation via Tripo Studio. Export, retopo, rigging tips.</div>
|
||||
</a>
|
||||
<a class="skill-card" href="skills/blog.md">
|
||||
<div class="skill-name">blog</div>
|
||||
<div class="skill-desc">Write markdown blog posts with YAML frontmatter. Format, structure, and SEO checklist.</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="callout">
|
||||
<h3>What are skills?</h3>
|
||||
<p>Skills are markdown playbooks that teach AI agents specific workflows. Drop them into your <code>.cursor/skills/</code> directory and your agent can follow them. Think of them as runbooks where the reader is an LLM, not a human.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-inner">
|
||||
<span>© 2026 Tinqs Ltd · <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a></span>
|
||||
<span><a href="https://tinqs.com">tinqs.com</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
After
|
Reference in New Issue
Block a user