Praxys
Kernel v1.0.0-alpha.status: loading

Stop Generating Code.
Start Running Software.

An AI-native application operating system (OS) and SDK that separates operational boilerplate from business logic. Write robust, secure applications in under 100 lines of standard TypeScript, running sandboxed on any cloud, deployed straight from your Git repository.

Git-First Open-Core · BYOC Architecture Ready

app.ts
// 100% Boilerplate-Free. Owned in Git.
import { Type } from "@praxys/sdk";

export default async function run(ctx) {
  // 1. Zero-setup database and namespaced storage
  const log = await ctx.db.table("summaries").create({
    fileName: ctx.inputs.file.name,
    content: await ctx.storage.readString(ctx.inputs.file)
  });

  // 2. Cognitive reasoning agent with host budget
  return await ctx.agent.think({
    prompt: `Analyze this file: ${log.content}`,
    schema: Type.Object({
      summary: Type.String(),
      actionItems: Type.Array(Type.String())
    })
  });
}