const partner = await startups.onboard({
name: "6AI",
stack: ["Next.js", "Supabase"],
ai: true
})|async function scaleCompany(id: string) {
const metrics = await analytics.get(id)
return agent.optimize(metrics)
}import { claude } from "@anthropic/sdk"
const response = await claude.complete({
model: "claude-sonnet-4-6",
prompt: buildPrompt(context)
})type Company = {
name: string
stage: "building" | "active"
aiNative: boolean
}// deploy to production
await vercel.deploy({
project: "6aiatx",
env: "production"
})|const agent = new AIAgent({
tools: [webSearch, codeExec],
memory: vectorStore
})const partners = await db.query(
"SELECT * FROM portfolio"
)
// ship fast, iterate faster
for (const c of companies) {
await c.grow()
}