Skip to content

Commit 7367c2e

Browse files
committed
chore: initialize tessl with vendored mode and MCP configs
Run tessl init to generate MCP configs for 5 agents (Claude Code, Gemini CLI, Codex, GitHub Copilot CLI, GitHub Copilot for VS Code). Track .mcp.json and .vscode/mcp.json for team sharing. Gitignore .tessl/session-data/ and .playwright-mcp/.
1 parent fc3792b commit 7367c2e

5 files changed

Lines changed: 47 additions & 2 deletions

File tree

.codex/config.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[mcp_servers.tessl]
2+
type = "stdio"
3+
command = "tessl"
4+
args = [ "mcp", "start" ]

.gemini/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"mcpServers": {
3+
"tessl": {
4+
"type": "stdio",
5+
"command": "tessl",
6+
"args": [
7+
"mcp",
8+
"start"
9+
]
10+
}
11+
}
12+
}

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,9 @@ replay_pid*
398398

399399
# IDEs
400400
.idea/
401-
.vscode/
401+
.vscode/*
402+
!.vscode/mcp.json
403+
!.vscode/extensions.json
402404

403405
# Nuitka
404406
**/dist-nuitka/**
@@ -409,8 +411,11 @@ replay_pid*
409411
# Mac
410412
.DS_Store
411413

414+
# Playwright MCP
415+
.playwright-mcp/
416+
412417
# Tessl — .tessl/.gitignore handles tiles/RULES.md internally
413-
.mcp.json
418+
.tessl/session-data/
414419

415420
# Claude Code — track shared config, ignore local state
416421
.claude/*

.mcp.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"mcpServers": {
3+
"tessl": {
4+
"type": "stdio",
5+
"command": "tessl",
6+
"args": [
7+
"mcp",
8+
"start"
9+
]
10+
}
11+
}
12+
}

.vscode/mcp.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"servers": {
3+
"tessl": {
4+
"type": "stdio",
5+
"command": "tessl",
6+
"args": [
7+
"mcp",
8+
"start"
9+
]
10+
}
11+
}
12+
}

0 commit comments

Comments
 (0)