Codimir Docs
Codimir Docs
OverviewGet Started
About Codimir
API Reference
Codimir Codec SDK
Concepts
Codimir AI Fabrick
Personal Quickstart
Use Cases
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

  1. Sign up at /signup.
  2. Choose “Personal” when prompted during onboarding.
  3. Fill in your profile details.

You can add an Organization later without losing your personal projects.

2. Create your first project

  1. From the dashboard, click “New Project”.
  2. Pick a template (Software, Content, Design, Assistant, Trading) or “Blank”.
  3. 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.

RunPod Offload

Heavy jobs and long pipelines on RunPod with progress streaming.

Content Creation Tool

AGI‑assisted content creation in Codimir — plan, draft, review, and publish high‑quality content with sub‑agents and live streaming.

On this page

Personal Quickstart1. Create your account2. Create your first project3. Connect optional integrations4. Install the SDK (optional)5. Try a quick script (optional)6. Next steps
AI Assistant
Assistant
Hi! I'm your AI assistant. Ask me anything or describe your task.