Compare commits

..

No commits in common. "d82612f6997a263dca8ee6024914e0cc552d9a3d" and "725f9512837d3c24991f6f37c28cafd26ab14697" have entirely different histories.

3 changed files with 8 additions and 14 deletions

View file

@ -14,8 +14,11 @@
[alias] [alias]
dc = diff --staged dc = diff --staged
di = diff di = diff
amend = commit --amend
aa = add --all
ff = merge --ff-only
noff = merge --no-ff
pf = pull --ff-only pf = pull --ff-only
pr = pull --rebase
fa = fetch --all fa = fetch --all
st = status st = status
ci = commit --verbose ci = commit --verbose
@ -25,6 +28,8 @@
cl = clone cl = clone
ll = !max-git-log ll = !max-git-log
uu = !max-set-upstream uu = !max-set-upstream
whodunnit = blame
peek = log -1
wip = commit -m 'wip' --no-verify wip = commit -m 'wip' --no-verify
unwip = reset --soft HEAD~1 unwip = reset --soft HEAD~1
s = switch s = switch

View file

@ -13,7 +13,7 @@
"edit_predictions": { "edit_predictions": {
"mode": "subtle" "mode": "subtle"
}, },
"agent": { "assistant": {
"default_model": { "default_model": {
"provider": "anthropic", "provider": "anthropic",
"model": "claude-3-7-sonnet-latest" "model": "claude-3-7-sonnet-latest"

View file

@ -8,7 +8,7 @@
"", "",
"import { describe } from 'node:test'", "import { describe } from 'node:test'",
"", "",
"import { withFixturesIt } from '@lib/database/test'", "import { createDatabase, tearDown, withFixturesIt } from '@lib/database/test'",
"import { createTestContext } from 'baseup/services/internal/engine/context/test'", "import { createTestContext } from 'baseup/services/internal/engine/context/test'",
"", "",
"import { expect, use } from 'chai'", "import { expect, use } from 'chai'",
@ -31,16 +31,5 @@
" $0", " $0",
"})" "})"
] ]
},
"grpcimpl": {
"prefix": "grpcimpl",
"description": "gRPC implementation function",
"body": [
"import type Context from 'baseup/services/internal/engine/context'",
"",
"export async function ${1:endpointName}(ctx: Context) {",
" $0",
"}"
]
} }
} }