Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Skir - Language SupportNew to Visual Studio Code? Get it now.
Skir - Language Support

Skir - Language Support

Tyler Fibonacci

|
2 installs
| (0) | Free
Language support for Skir - a language for representing data types, constants and RPC interfaces
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Skir Language Support for Visual Studio Code

This extension provides language support for the Skir language - a declarative language for representing data types, constants and APIs (similar to Protocol Buffer).

Website: https://skir.sh

Features

  • Syntax highlighting for Skir files (.skir extension)
  • Format on save
  • Go to definition for symbols and imports
  • Hover information for symbols
  • Comment toggling (line and block comments)
  • Bracket matching and auto-closing pairs

Skir Language

Skir is a language for representing data types, constants and APIs. It is designed for systems where different services are written in different languages but need to exchange structured data.

Example:

// shapes.skir

struct Point {
  x: int32;
  y: int32;
  label: string;
}

struct Shape {
  points: [Point];
  /// A short string describing this shape.
  label: string;
}

const TOP_RIGHT_CORNER: Point = {
  x = 600,
  y = 400,
  label = "top-right corner",
};

/// Returns true if no part of the shape's boundary curves inward.
method IsConvex(Shape): bool = 12345;

Go to Definition

This extension supports navigating to the definition of symbols within your Skir codebase:

  • Click on any symbol to navigate to its definition
  • Click on import paths to navigate to the imported file

Requirements

No special requirements for this extension.

Release Notes

0.1.1

  • Format on save

0.1.0

Initial release of Skir Language Support:

  • Syntax highlighting
  • Go to definition for symbols and import paths
  • Hover information for symbols
  • Bracket matching and auto-closing pairs
  • Comment toggling (line and block comments)
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft