Get started
Personal Quickstart
Step-by-step guide to set up a free, pay‑per‑use personal account with up to 3 projects included.
Personal Quickstart
This guide helps you set up Codimir for personal use. Personal accounts are free to start and follow a pay‑per‑use model. You can create up to 3 projects; beyond that, usage‑based charges apply.
1. Create your account
- Sign up at /signup.
- Choose “Personal” when prompted during onboarding.
- Fill in your profile details.
You can add an Organization later without losing your personal projects.
2. Create your first project
- From the dashboard, click “New Project”.
- Pick a template (Software, Content, Design, Assistant, Trading) or “Blank”.
- Name your project and click Create.
3. Connect optional integrations
- Calendar: Google Calendar for scheduling and reminders.
- Files: Google Drive for docs and assets.
- Messengers: Connect your preferred channel for notifications.
These enable “Personal Assistant” use cases, like scheduling a meeting or preparing docs automatically.
4. Install the SDK (optional)
If you want to automate or use the API/CLI:
npm install @codimir/sdk
pnpm add @codimir/sdk
yarn add @codimir/sdk
Create a .env.local
and set:
CODIMIR_API_URL=https://api.codimir.com
CODIMIR_API_KEY=YOUR_API_KEY
5. Try a quick script (optional)
import { CodimirClient } from "@codimir/sdk"
async function main(): Promise<void> {
const client = new CodimirClient({
apiKey: process.env.CODIMIR_API_KEY ?? "",
baseUrl: process.env.CODIMIR_API_URL ?? "https://api.codimir.com",
})
const ticket = await client.tickets.create({
title: "Write weekly blog post",
description: "AI-assisted outline and draft",
priority: "medium",
})
console.log("Created ticket:", ticket.id)
}
main().catch((err: unknown) => {
console.error("Personal quickstart failed", err)
})
6. Next steps
- Explore use cases under “Personal” in the landing Use Cases section.
- Add a second project (e.g., Design or Assistant) to see tailored workflows.
- When ready for collaboration, create an Organization.