Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Takyonic LensNew to Visual Studio Code? Get it now.
Takyonic Lens

Takyonic Lens

hocestnonsatis

|
1 install
| (0) | Free
VS Code extension for Takyonic - syntax highlighting and schema management
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Takyonic Lens

VS Code extension for Takyonic - syntax highlighting and schema management.

Features

🎨 Syntax Highlighting

Beautiful syntax highlighting for .takyonic schema files:

  • Keywords: table
  • Types: int, string, jsonb, bool, timestamp, etc.
  • Annotations: @primary, @unique, @nullable, @default, etc.
  • Comments: Single-line (//) and block (/* */)

⚡ Push Schema

Push your schema directly to the Takyonic server:

  1. Open a .takyonic file
  2. Press Ctrl+Shift+P (or Cmd+Shift+P on Mac)
  3. Type "Takyonic: Push Schema" and press Enter

Or click the ⚡ icon in the status bar when a .takyonic file is open.

📥 Pull Schema

Pull the current schema from the server:

  1. Press Ctrl+Shift+P (or Cmd+Shift+P on Mac)
  2. Type "Takyonic: Pull Schema" and press Enter

Configuration

Open Settings (Ctrl+,) and search for "Takyonic":

Setting Description Default
takyonic.endpoint Takyonic server URL http://localhost:8080
takyonic.adminSecret Admin secret for authentication (empty)

Example Schema

// User management tables
table users {
  id: text @primary
  email: text @unique
  name: text
  created_at: timestamp @default(CURRENT_TIMESTAMP)
  metadata: jsonb @nullable
}

table logs {
  id: text @primary
  event: text
  payload: jsonb
  severity: integer @default(1)
  timestamp: timestamp @default(CURRENT_TIMESTAMP)
}

Theme

The extension includes a "Takyonic Dark" theme optimized for .takyonic files. To enable it:

  1. Press Ctrl+K Ctrl+T
  2. Select "Takyonic Dark"

Commands

Command Description
Takyonic: Push Schema Push the active schema to the server
Takyonic: Pull Schema Pull schema from the server

Requirements

  • VS Code 1.85.0 or higher
  • A running Takyonic server

Installation

From VSIX

  1. Download the .vsix file
  2. In VS Code, press Ctrl+Shift+P
  3. Type "Extensions: Install from VSIX"
  4. Select the downloaded file

From Source

cd vscode-extension
npm install
npm run compile
# Press F5 to launch Extension Development Host

Development

# Install dependencies
npm install

# Compile TypeScript
npm run compile

# Watch for changes
npm run watch

# Package extension
npm run package

License

MIT

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft