Using tiles directly from your repo

Use tiles directly from your repository for codebase-specific context

Instead of publishing tiles to the Tessl Registry, you can also check them directly into your repository. This is a simpler way to distribute tiles together with your code.

When to check tiles into your repo vs using the registry

Check tiles into your repo when:

  • You want a simple distribution method - tiles travel automatically with your code

  • Context is tightly coupled to this specific codebase

  • You don't need version management across multiple projects

Use the Tessl Registry when:

  • You need centralized management and updates

  • You want evaluation and review workflows

  • You need automated distribution across multiple repositories

  • You want to keep tiles up to date independently from code changes

How it works

Repository-specific tiles are committed to your codebase and referenced in tessl.json with a file: source. Team members automatically get the tile when they clone the repo and run tessl install.

Setup

1. Create the tile in your repository

This creates the tile structure:

2. Install it locally

Add the tile to your project by referencing it in tessl.json with a file: source:

This updates your tessl.json:

3. Commit both to version control

Team workflow

When team members clone the repository:

The tile installs automatically from the file: source in tessl.json. Everyone gets the same codebase-specific context.

Updating the tile

Changes to the tile go through your normal code review process:

  1. Edit tile content (docs, rules, skills)

  2. Commit changes: git commit -m "Update architecture docs"

  3. Create pull request

  4. Team reviews context changes like code changes

  5. Merge to main

Team members get updates when they pull and run tessl install.

Benefits

  • Versioned with code - Tile evolves alongside the codebase

  • Automatic distribution - Team gets context when they clone

  • Code review - Changes to patterns/architecture reviewed via PR

  • Private - Context stays internal, no publishing needed

  • Self-documenting - Codebase carries its own context

Example: Monorepo workspaces

In monorepos, create workspace-specific tiles:

Each workspace's tessl.json references its local tile and any shared tiles:

Last updated