### Initialize Alien Project CLI Source: https://www.alien.dev Install the Alien CLI and initialize a new project. This command is used to start building applications with the Alien Platform. ```bash $ npx @alienplatform/cli init ``` -------------------------------- ### AI Worker: File Operations with Alien SDK Source: https://www.alien.dev Defines commands for reading and writing files within a customer's VPC using the Alien SDK. This worker connects outbound only and exposes tools for AI models to invoke remotely. ```typescript import { command, storage } from "@alienplatform/sdk" // Worker deployed in the customer's VPC. Connects outbound only. // Each command() is a tool the AI model can invoke remotely // via the Commands API — zero inbound networking. const files = storage("files") command("read-file", async ({ path }) => { return files.get(path) }) command("write-file", async ({ path, content }) => { return files.put(path, content) }) command("list-tools", async () => [ { name: "read-file", description: "Read from private workspace" }, { name: "write-file", description: "Write to private workspace" }, ]) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.