Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
data-goblin avatar

Te Docs

  • 35 installs
  • 836 repo stars
  • Updated July 29, 2026
  • data-goblin/power-bi-agentic-development

Search Tabular Editor documentation and understand TE3 configuration files like .tmuo, Preferences.json, and Layouts.json.

About

Guidance for searching Tabular Editor documentation and understanding TE3 configuration files such as .tmuo, Preferences.json, and Layouts.json. A developer uses it to find TE how-to guidance or configure per-model TE3 settings.

  • Searches Tabular Editor documentation for how-to guidance
  • Explains TE3 config files (.tmuo, Preferences.json)

Te Docs by the numbers

  • 35 all-time installs (skills.sh)
  • Ranked #1,060 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/data-goblin/power-bi-agentic-development --skill te-docs

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs35
repo stars836
Last updatedJuly 29, 2026
Repositorydata-goblin/power-bi-agentic-development

What it does

Search Tabular Editor documentation and understand TE3 configuration files like .tmuo, Preferences.json, and Layouts.json.

Files

SKILL.mdMarkdownGitHub ↗

Tabular Editor Documentation & Configuration

Guidance for searching Tabular Editor documentation and understanding TE3 configuration files (.tmuo, Preferences.json, etc.).

Pre-flight

Before using documentation search, verify pbi-search is installed:

pbi-search --version

If the command is not found, inform the user and offer two options:

1. Install `pbi-search` (recommended): see bin/README.md for install instructions via cargo install or GitHub Releases at data-goblin/pbi-search 2. Search without the CLI: use the microsoft-learn MCP tools (microsoft_docs_search, microsoft_docs_fetch) for Microsoft Learn content, or WebFetch to retrieve docs directly from these sources:

  • Tabular Editor docs: https://docs.tabulareditor.com/
  • DAX reference: https://dax.guide/<function>/
  • SQLBI articles: https://www.sqlbi.com/articles/
  • Data Goblins: https://data-goblins.com/

The CLI is strongly preferred; it searches all sources simultaneously and returns clean markdown. The fallback requires manual URL construction and multiple fetches.

Documentation Search

Use the pbi-search CLI — the preferred way to search Tabular Editor docs and related Power BI/DAX resources. It searches Tabular Editor docs, DAX.guide, SQLBI, Microsoft Learn (Power BI + Fabric), the TE blog, and Data Goblins simultaneously, returning clean markdown.

After install, populate the local manifest cache (once):

pbi-search sync        # ~13s

Searching

# Search all sources
pbi-search search "creating measures"

# Search only Tabular Editor docs
pbi-search search "BPA rules" --source te-docs

# Search TE blog + TE docs
pbi-search search "incremental refresh" --source te-docs --source te-blog

# JSON output for structured use in agents
pbi-search search "workspace mode" --source te-docs --json

# Include content excerpts
pbi-search search "calculated columns" --source te-docs --excerpts

Fetching full docs

# Tabular Editor doc by bare path (from search results)
pbi-search fetch features/Best-Practice-Analyzer

# Any supported URL
pbi-search fetch https://docs.tabulareditor.com/features/workspace-mode
pbi-search fetch https://dax.guide/calculate/

# Extract a specific section
pbi-search fetch features/Best-Practice-Analyzer --section "Creating rules"

# Truncate for context budget
pbi-search fetch features/creating-measures --max-chars 3000 --json

Agent search workflow

1. pbi-search search "<topic>" --source te-docs --json — find relevant docs 2. Use the path or url from results: pbi-search fetch <path> 3. No results? Broaden: pbi-search search "<topic>" (all sources) 4. DAX questions: always add --source dax-guide

Available sources

IDContent
te-docsTabular Editor docs (features, how-tos, KB, references)
dax-guide~480 DAX function reference pages
te-blogTabular Editor blog
ms-learnMicrosoft Learn — Power BI + Fabric (live, no sync needed)
sqlbi~370 SQLBI technical articles
data-goblinsData Goblins Power BI posts

Richer search quality (optional)

Default sync builds a fast title-only index. For conceptual queries ("remove filters from column") run once with descriptions:

pbi-search sync --descriptions   # fetches meta descriptions; ~30s extra

---

Configuration Files (.tmuo)

TMUO files store developer- and model-specific preferences in Tabular Editor 3.

Critical

  • TMUO files contain user-specific settings -- never commit to version control
  • Credentials are encrypted with Windows User Key -- cannot be shared between users
  • Add *.tmuo to .gitignore in all projects
  • File naming: <ModelFileName>.<WindowsUserName>.tmuo

Structure

{
  "UseWorkspace": true,
  "WorkspaceConnection": "localhost",
  "WorkspaceDatabase": "MyModel_Workspace_JohnDoe",
  "Deployment": {
    "TargetConnectionString": "powerbi://api.powerbi.com/v1.0/myorg/Workspace",
    "TargetDatabase": "MyModel",
    "DeployPartitions": false,
    "DeployModelRoles": true
  },
  "DataSourceOverrides": {
    "SQL Server": {
      "ConnectionString": "Data Source=localhost;Initial Catalog=DevDB"
    }
  }
}

Sections

SectionPurpose
UseWorkspaceEnable workspace database mode
WorkspaceConnectionServer for workspace database
WorkspaceDatabaseWorkspace database name (unique per dev/model)
DeploymentTarget server, database, and deploy options
DataSourceOverridesOverride connections for workspace
TableImportSettingsSettings for Import Tables feature

Deployment Options

FieldTypeDescription
TargetConnectionStringstringTarget server connection
TargetDatabasestringTarget database name
DeployPartitionsboolDeploy partition definitions
DeployModelRolesboolDeploy security roles
DeployModelRoleMembersboolDeploy role members
DeploySharedExpressionsboolDeploy shared M expressions

Application Preferences

TE3 stores application-level preferences in %LocalAppData%\TabularEditor3\:

FilePurpose
Preferences.jsonApplication settings (proxy, updates, telemetry)
UiPreferences.jsonUI state (window positions, panel sizes)
Layouts.jsonSaved layout configurations

References

  • `references/doc-structure.md` -- Detailed documentation structure
  • `references/url-redirects.md` -- Old-to-new URL mapping for broken links
  • `schema/` -- JSON schemas for tmuo, preferences, layouts, UI preferences
  • `scripts/validate_config.py` -- Validate TE3 config files
  • `scripts/validate_tmuo.py` -- Validate TMUO files

External

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.