Skip to content

Commit 87991f9

Browse files
misc tidy up updates
1 parent 458ea58 commit 87991f9

File tree

19 files changed

+283
-83
lines changed

19 files changed

+283
-83
lines changed

bin/aider

Lines changed: 0 additions & 20 deletions
This file was deleted.

bin/path/taider

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export OPENROUTER_API_KEY=$OPENROUTER_API_KEY
1010
export GEMINI_API_KEY=$GEMINI_API_KEY
1111

1212
MODEL=gpt-5
13-
#MODEL=
13+
MODEL=openrouter/openai/gpt-5
1414
EDITOR_MODEL=vertex_ai/gemini-2.5-flash
1515
WEAK_MODEL=vertex_ai/gemini-2.5-flash
1616

bin/post_install

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# TODO: Check front-end and backend ai and @sinclair/typebox versions in package-lock.json are identical

docs/docs/about.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/docs/authentication.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/docs/contributing.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

frontend/bin/find-problematic-test

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#!/bin/bash
2+
3+
# Save this script as find-problematic-test.sh
4+
# Make it executable: chmod +x find-problematic-test.sh
5+
6+
# Find all spec files
7+
SPEC_FILES=$(find src -name "*.spec.ts")
8+
9+
echo "Found $(echo "$SPEC_FILES" | wc -l) spec files"
10+
echo ""
11+
12+
# Run each spec file individually
13+
for spec in $SPEC_FILES; do
14+
echo "Testing: $spec"
15+
npm run env:test && ng test --include="$spec" --browsers=ChromeHeadless --watch=false
16+
17+
# Check if the test failed with non-zero exit code
18+
if [ $? -ne 0 ]; then
19+
echo "FOUND PROBLEMATIC TEST: $spec"
20+
break
21+
fi
22+
23+
echo "------------------------------------"
24+
done

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"@grpc/grpc-js": "^1.13.4",
104104
"@microsoft/tiktokenizer": "^1.0.10",
105105
"@mistralai/mistralai": "^1.7.1",
106-
"@modelcontextprotocol/sdk": "^1.18.0",
106+
"@modelcontextprotocol/sdk": "1.20.0",
107107
"@mozilla/readability": "^0.6.0",
108108
"@octokit/request": "^5.1.0",
109109
"@openrouter/ai-sdk-provider": "1.1.2",
@@ -180,7 +180,8 @@
180180
"tslib": "^2.6.2",
181181
"turndown": "^7.1.3",
182182
"uuid": "^9.0.1",
183-
"xmldom": "^0.6.0"
183+
"xmldom": "^0.6.0",
184+
"yaml": "^2.8.1"
184185
},
185186
"devDependencies": {
186187
"@biomejs/biome": "1.9.4",

pnpm-lock.yaml

Lines changed: 16 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cli/mcp.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { McpServer, ResourceTemplate } from '@modelcontextprotocol/sdk/server/mcp.js';
2+
import { StreamableHTTPServerTransport } from '@modelcontextprotocol/sdk/server/streamableHttp.js';
3+
4+
const server = new McpServer({
5+
name: 'tpyedai-server',
6+
version: '1.0.0',
7+
});
8+
9+
// server.registerTool(
10+
// 'localSearch',
11+
// {
12+
// title: 'Fast search',
13+
// description: 'Performans a fast local search of the codebase',
14+
// inputSchema: { workingDirectory: z.string(), query: z.string() },
15+
// outputSchema: { result: z.string(), files: z.array(z.string()) }
16+
// },
17+
// async ({ workingDirectory, query }) => {
18+
// const output = { result: a + b };
19+
// return {
20+
// content: [{ type: 'text', text: JSON.stringify(output) }],
21+
// structuredContent: output
22+
// };
23+
// }
24+
// );

0 commit comments

Comments
 (0)