Praxys
Kernel v1.0.0-alpha.status: loading

Stop Generating Code.
Start Running Software.

The AI-native operating system that natively absorbs authentication, telemetry, cache layers, and resource budgets. Build robust, secure applications in under 100 lines of declarative config. On any cloud, in any language.

MIT Open-Core Base · BYOC Architecture Ready

app-manifest.ts
// 100% Infrastructure Abstracted
export const config = {
  id: 'customer-summarizer',
  permissions: ['storage:write', 'llm:advanced'],
  schema: {
    inputs: [{ id: 'csv', type: 'file', label: 'Upload Source' }]
  },
  async execute(ctx, inputs) {
    const raw = await ctx.storage.getString(inputs.csv);
    return await ctx.llm.call({ model: 'advanced', prompt: raw });
  }
};