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 .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@ Dockerfile.local
CLAUDE.local.md
.zed
tsconfig.tsbuildinfo

# Auto-generated by @sentry/dotagents — do not commit these files.
agents.lock
.agents/.gitignore
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ deno.lock
# Template files with special formatting
js/scripts/openapi_zod_client_output_template.hbs

# Generated dotagents skill content
.agents/skills/dotagents/

.context
16 changes: 16 additions & 0 deletions agents.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This is a configuration file for `@sentry/dotagents`

version = 1
agents = ["claude", "codex", "cursor", "vscode", "opencode"]
gitignore = false

[trust]
github_orgs = ["braintrustdata"]

[[skills]]
name = "e2e-tests"
source = "path:.agents/skills/e2e-tests"

[[skills]]
name = "instrumentation"
source = "path:.agents/skills/instrumentation"
8 changes: 1 addition & 7 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,5 @@ experimental = true
# See env.example to configure API keys.
_.file = ".env"

[tools]
nodejs = "24.15.0"
npm = "11.12.1"
pnpm = "10.33.0"
deno = "2.7.6"

[hooks]
postinstall = "pnpm install --frozen-lockfile"
postinstall = "pnpm install --frozen-lockfile && pnpm exec husky && pnpm exec dotagents install"
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
"test:e2e:update": "turbo run test:e2e:update",
"test:e2e:record": "node e2e/scripts/run-record-tests.mjs --braintrust-build-deps",
"test:e2e:canary": "turbo run test:e2e:canary",
"dotagents:install": "dotagents install",
"dotagents:sync": "dotagents sync",
"changeset": "changeset",
"playground": "turbo run playground --filter=\"braintrust\"",
"playground:cli:push": "turbo run playground:cli:push --filter=\"braintrust\"",
"playground:cli:eval": "turbo run playground:cli:eval --filter=\"braintrust\"",
"prepare": "husky || true",
"formatting": "prettier --check .",
"lint": "turbo run lint",
"fix:formatting": "prettier --write .",
Expand All @@ -38,6 +39,7 @@
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@changesets/get-github-info": "^0.8.0",
"@sentry/dotagents": "1.17.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
Expand Down
Loading
Loading