Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .codex/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[mcp_servers.tessl]
type = "stdio"
command = "tessl"
args = [ "mcp", "start" ]
12 changes: 12 additions & 0 deletions .cursor/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"mcpServers": {
"tessl": {
"type": "stdio",
"command": "tessl",
"args": [
"mcp",
"start"
]
}
}
}
16 changes: 14 additions & 2 deletions .gemini/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"context": {
"fileName": ["CLAUDE.md"]
"fileName": [
"CLAUDE.md"
]
},
"mcpServers": {
"tessl": {
"type": "stdio",
"command": "tessl",
"args": [
"mcp",
"start"
]
}
}
}
}
13 changes: 11 additions & 2 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
{
"mcpServers":[]
}
"mcpServers": {
"tessl": {
"type": "stdio",
"command": "tessl",
"args": [
"mcp",
"start"
]
}
}
}
12 changes: 12 additions & 0 deletions .vscode/mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"servers": {
"tessl": {
"type": "stdio",
"command": "tessl",
"args": [
"mcp",
"start"
]
}
}
}
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"devDependencies": {
"@iconify-json/heroicons": "^1.2.3",
"@iconify-json/simple-icons": "^1.2.75",
"@nuxt/devtools": "latest",
"@nuxt/devtools": "4.0.0-alpha.6",
"@nuxt/eslint": "^1.15.2",
"@nuxt/test-utils": "^4.0.0",
"@pleaseai/eslint-config": "workspace:*",
Expand Down
888 changes: 755 additions & 133 deletions bun.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/vitest-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@
"nyc": "^17.1.0",
"std-env": "^3.9.0",
"tsup": "^8.5.0",
"typescript": "latest"
"typescript": "^6.0.2"
}
}
2 changes: 1 addition & 1 deletion plugins/bun/skills/use-bun/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: use-bun
description: 'Answer questions about Bun — the all-in-one JavaScript/TypeScript toolkit — and help write code using its runtime, package manager, test runner, and bundler. Use when developers: (1) call Bun-native APIs like `Bun.serve`, `Bun.file`, `Bun.write`, `Bun.spawn`, `Bun.$` (shell), `Bun.SQL`, `Bun.RedisClient`, `Bun.Glob`, `Bun.password`, `Bun.build`, `Bun.Cookie`, `HTMLRewriter`; (2) import from `bun:test`, `bun:sqlite`, `bun:ffi`, `bun:jsc`; (3) run CLI commands `bun install`, `bun add`, `bun remove`, `bun update`, `bun outdated`, `bun pm`, `bun run`, `bun test`, `bun build`, `bunx`, `bun create`, `bun x`, `bun init`, `bun upgrade`, `bun audit`; (4) configure `bunfig.toml`, `bun.lock`, workspaces, catalogs, overrides, isolated installs, trusted dependencies, lifecycle scripts; (5) work with the bundler — loaders, plugins, macros, `--compile` executables, bytecode, HTML imports, fullstack dev server, hot reloading; (6) write tests with `bun:test` — `mock`, `spyOn`, `mock.module`, snapshots, `setSystemTime`, coverage; (7) need Node.js compat info, JSC vs V8 differences, or migration from npm/yarn/pnpm/jest/vitest. Triggers on: "bun", "Bun.serve", "Bun.file", "Bun.spawn", "Bun.SQL", "Bun.build", "bun install", "bun add", "bun test", "bun run", "bunx", "bun create", "bun.lock", "bunfig.toml", "bun:test", "bun:sqlite", "bun:ffi", "bun shell", "bun bundler", "bun macro", "bun workspace", "bun catalog", "bun --compile", "trustedDependencies", "isolated installs", "JavaScriptCore", "JSC".'
description: 'Answer questions about Bun — the all-in-one JavaScript/TypeScript toolkit — and write code using its runtime, package manager, test runner, and bundler. Use when developers call Bun-native APIs (`Bun.serve`, `Bun.file`, `Bun.write`, `Bun.spawn`, `Bun.$` shell, `Bun.SQL`, `Bun.RedisClient`, `Bun.build`, `HTMLRewriter`); import `bun:*` modules (`bun:test`, `bun:sqlite`, `bun:ffi`, `bun:jsc`); run CLI commands (`bun install`/`add`/`run`/`test`/`build`, `bunx`, `bun create`, `bun --compile`); configure `bunfig.toml`, `bun.lock`, workspaces, catalogs, overrides, isolated installs, trustedDependencies, or lifecycle scripts; bundle with loaders, plugins, or macros; write `bun:test` tests (`mock`, `spyOn`, `mock.module`, snapshots, coverage); or need Node.js compatibility, JSC vs V8 differences, or migration from npm/yarn/pnpm/jest/vitest.'
---

## Prerequisites
Expand Down
5 changes: 5 additions & 0 deletions tessl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
Comment thread
amondnet marked this conversation as resolved.
"name": "madrone-scree",
"mode": "vendored",
"dependencies": {}
}
Loading