Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
34020f2
fix: updated packages and methodes names
PavelKorobchuk Oct 21, 2025
fda8922
fix: renamed methods
PavelKorobchuk Oct 22, 2025
839d8ba
fix: fixed tools usage examples
PavelKorobchuk Oct 23, 2025
c570ef0
fix: removed console logs
PavelKorobchuk Oct 23, 2025
0cef890
fix: prettier fix
PavelKorobchuk Oct 23, 2025
97ad0a3
fix: update biome.json
PavelKorobchuk Oct 23, 2025
bfd0500
fix: update biome.json 2
PavelKorobchuk Oct 23, 2025
b71a588
fix: updated lock file
PavelKorobchuk Oct 23, 2025
71bca7e
fix: fixed issue for biome
PavelKorobchuk Oct 23, 2025
9135c5c
fix: fixed weather tool usage
PavelKorobchuk Oct 24, 2025
6dcc4b0
fix: lint
PavelKorobchuk Oct 24, 2025
5c381ed
fix: lint #2
PavelKorobchuk Oct 24, 2025
29072c4
fix: udpated versions to stable ones
PavelKorobchuk Oct 24, 2025
8202cb5
fix: fixed biome
PavelKorobchuk Oct 27, 2025
7d5198f
fix: fixed ts
PavelKorobchuk Oct 27, 2025
5684447
fix: fixed package
PavelKorobchuk Oct 27, 2025
e62631f
AIDX-307 Add support for Auth0, fixes to /user endpoint
AdamWozniewski Oct 27, 2025
ea67bc0
Merge pull request #1 from AdamWozniewski/pr-5
PavelKorobchuk Oct 27, 2025
00ccdce
fix: fixed server ts
PavelKorobchuk Oct 27, 2025
ede8e4f
Trigger Build
PavelKorobchuk Oct 27, 2025
75e6d7c
TEST: tsc muting
AdamWozniewski Oct 27, 2025
d56b617
Reduction of typing errors
AdamWozniewski Oct 27, 2025
8b61033
Merge pull request #2 from AdamWozniewski/pr-5
PavelKorobchuk Oct 27, 2025
942a8a7
fix: fixed chat ts
PavelKorobchuk Oct 27, 2025
2bfb93a
fix: code review updates
priley86 Oct 27, 2025
2f9a168
fix: export ChatInstance type
priley86 Oct 28, 2025
9057ff4
fix: minor ui tweaks
priley86 Oct 29, 2025
3b6b83a
Add support for github and slack
AdamWozniewski Oct 30, 2025
830a5c5
fix: fixed server ts
PavelKorobchuk Oct 27, 2025
981c8b7
Trigger Build
PavelKorobchuk Oct 27, 2025
8082e23
fix: fixed chat ts
PavelKorobchuk Oct 27, 2025
a581476
fix: code review updates
priley86 Oct 27, 2025
af3fce5
fix: export ChatInstance type
priley86 Oct 28, 2025
09e2ebf
fix: minor ui tweaks
priley86 Oct 29, 2025
f7ed012
fix: updated default config
PavelKorobchuk Oct 31, 2025
c0c6fcb
Merge remote-tracking branch 'cloudflare-agents-starter-adam/pr-5-upd…
PavelKorobchuk Oct 31, 2025
5b76a89
fix: fixed prev merge
PavelKorobchuk Oct 31, 2025
79f0d21
fix: removed types
PavelKorobchuk Oct 31, 2025
e65a8be
fix: updated lock file
PavelKorobchuk Oct 31, 2025
40561d2
fix: biome file
PavelKorobchuk Oct 31, 2025
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: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Add new tools in `src/agent/tools.ts` using the tool builder:
// Example of a tool that requires confirmation
const searchDatabase = tool({
description: "Search the database for user records",
parameters: z.object({
inputSchema: z.object({
query: z.string(),
limit: z.number().optional(),
}),
Expand All @@ -168,7 +168,7 @@ const searchDatabase = tool({
// Example of an auto-executing tool
const getCurrentTime = tool({
description: "Get current server time",
parameters: z.object({}),
inputSchema: z.object({}),
execute: async () => new Date().toISOString(),
});
```
Expand Down
27 changes: 21 additions & 6 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,51 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.2/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"files": {
"ignoreUnknown": false,
"ignore": ["node_modules", "dist", "./worker-configuration.d.ts"]
"includes": [
"**",
"!**/node_modules",
"!**/dist",
"!worker-configuration.d.ts"
]
},
"formatter": {
"enabled": false,
"indentStyle": "tab"
},
"organizeImports": {
"enabled": true
},
"assist": { "actions": { "source": { "organizeImports": "on" } } },
"linter": {
"enabled": true,
"rules": {
"recommended": true,
"a11y": {
"noStaticElementInteractions": "off"
},
"style": {
"noNonNullAssertion": "off"
},
"correctness": {
"useUniqueElementIds": "off"
},
"suspicious": {
"noExplicitAny": "off"
"noExplicitAny": "off",
"noUnknownAtRules": "off"
}
}
},
"javascript": {
"formatter": {
"quoteStyle": "double"
}
},
"css": {
"parser": {
"tailwindDirectives": true
}
}
}
Loading
Loading