Skip to content

Commit 7c019fc

Browse files
committed
add missing .prettierrc file.
1 parent 5d3fcc3 commit 7c019fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1085
-1097
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- "*"
6+
- '*'
77
pull_request:
88
branches:
99
- main

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"trailingComma": "all",
3+
"tabWidth": 2,
4+
"semi": true,
5+
"singleQuote": true
6+
}

eslint.config.js

+42-42
Original file line numberDiff line numberDiff line change
@@ -1,80 +1,80 @@
11
// eslint.config.js
2-
import js from "@eslint/js";
3-
import pluginImport from "eslint-plugin-import";
4-
import prettierRecommended from "eslint-plugin-prettier/recommended";
5-
import pluginPromise from "eslint-plugin-promise";
6-
import pluginUnusedImports from "eslint-plugin-unused-imports";
7-
import ts from "typescript-eslint";
2+
import js from '@eslint/js';
3+
import pluginImport from 'eslint-plugin-import';
4+
import prettierRecommended from 'eslint-plugin-prettier/recommended';
5+
import pluginPromise from 'eslint-plugin-promise';
6+
import pluginUnusedImports from 'eslint-plugin-unused-imports';
7+
import ts from 'typescript-eslint';
88

99
export default ts.config(
1010
js.configs.recommended,
1111
ts.configs.recommended,
1212
prettierRecommended,
13-
pluginPromise.configs["flat/recommended"],
13+
pluginPromise.configs['flat/recommended'],
1414
{
1515
plugins: {
1616
import: pluginImport,
17-
"unused-imports": pluginUnusedImports,
17+
'unused-imports': pluginUnusedImports,
1818
},
1919
rules: {
20-
"@typescript-eslint/no-explicit-any": "warn",
21-
"@typescript-eslint/no-unused-vars": "off", // turned off in favor of unused-imports/no-unused-vars
22-
"@typescript-eslint/no-require-imports": "warn",
20+
'@typescript-eslint/no-explicit-any': 'warn',
21+
'@typescript-eslint/no-unused-vars': 'off', // turned off in favor of unused-imports/no-unused-vars
22+
'@typescript-eslint/no-require-imports': 'warn',
2323

2424
// Remove unused imports
25-
"unused-imports/no-unused-imports": "error",
26-
"unused-imports/no-unused-vars": [
27-
"error",
25+
'unused-imports/no-unused-imports': 'error',
26+
'unused-imports/no-unused-vars': [
27+
'error',
2828
{
29-
vars: "all",
30-
varsIgnorePattern: "^_",
31-
args: "after-used",
32-
argsIgnorePattern: "^_",
29+
vars: 'all',
30+
varsIgnorePattern: '^_',
31+
args: 'after-used',
32+
argsIgnorePattern: '^_',
3333
},
3434
],
3535

3636
// Import organization
37-
"import/order": [
38-
"error",
37+
'import/order': [
38+
'error',
3939
{
4040
groups: [
41-
"builtin",
42-
"external",
43-
"internal",
44-
"parent",
45-
"sibling",
46-
"index",
47-
"object",
48-
"type",
41+
'builtin',
42+
'external',
43+
'internal',
44+
'parent',
45+
'sibling',
46+
'index',
47+
'object',
48+
'type',
4949
],
50-
"newlines-between": "always",
51-
alphabetize: { order: "asc", caseInsensitive: true },
50+
'newlines-between': 'always',
51+
alphabetize: { order: 'asc', caseInsensitive: true },
5252
warnOnUnassignedImports: true,
5353
},
5454
],
55-
"import/no-duplicates": "error",
55+
'import/no-duplicates': 'error',
5656
},
5757
settings: {
58-
"import/parsers": {
59-
"@typescript-eslint/parser": [".ts", ".tsx"],
58+
'import/parsers': {
59+
'@typescript-eslint/parser': ['.ts', '.tsx'],
6060
},
61-
"import/resolver": {
61+
'import/resolver': {
6262
typescript: {
6363
alwaysTryTypes: true,
64-
project: ["./packages/*/tsconfig.json"],
64+
project: ['./packages/*/tsconfig.json'],
6565
},
6666
},
6767
},
6868
},
6969
{
7070
ignores: [
71-
"**/dist",
72-
"**/_doNotUse",
73-
"**/node_modules",
74-
"**/.vinxi",
75-
"**/.output",
76-
"**/pnpm-lock.yaml",
77-
"**/routeTree.gen.ts",
71+
'**/dist',
72+
'**/_doNotUse',
73+
'**/node_modules',
74+
'**/.vinxi',
75+
'**/.output',
76+
'**/pnpm-lock.yaml',
77+
'**/routeTree.gen.ts',
7878
],
7979
},
8080
);

packages/agent/src/core/executeToolCall.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Logger } from "../utils/logger.js";
1+
import { Logger } from '../utils/logger.js';
22

3-
import { Tool, ToolCall } from "./types.js";
3+
import { Tool, ToolCall } from './types.js';
44

55
const OUTPUT_LIMIT = 12 * 1024; // 10KB limit
66

@@ -29,7 +29,7 @@ export const executeToolCall = async (
2929
if (tool.logParameters) {
3030
tool.logParameters(toolCall.input, toolContext);
3131
} else {
32-
logger.info("Parameters:");
32+
logger.info('Parameters:');
3333
Object.entries(toolCall.input).forEach(([name, value]) => {
3434
logger.info(` - ${name}: ${JSON.stringify(value).substring(0, 60)}`);
3535
});
@@ -45,18 +45,18 @@ export const executeToolCall = async (
4545
if (tool.logReturns) {
4646
tool.logReturns(output, toolContext);
4747
} else {
48-
logger.info("Results:");
49-
if (typeof output === "string") {
48+
logger.info('Results:');
49+
if (typeof output === 'string') {
5050
logger.info(` - ${output}`);
51-
} else if (typeof output === "object") {
51+
} else if (typeof output === 'object') {
5252
Object.entries(output).forEach(([name, value]) => {
5353
logger.info(` - ${name}: ${JSON.stringify(value).substring(0, 60)}`);
5454
});
5555
}
5656
}
5757

5858
const toolOutput =
59-
typeof output === "string" ? output : JSON.stringify(output, null, 2);
59+
typeof output === 'string' ? output : JSON.stringify(output, null, 2);
6060
return toolOutput.length > OUTPUT_LIMIT
6161
? `${toolOutput.slice(0, OUTPUT_LIMIT)}...(truncated)`
6262
: toolOutput;
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { describe, it, expect, vi, beforeEach } from "vitest";
1+
import { describe, it, expect, vi, beforeEach } from 'vitest';
22

3-
import { toolAgent } from "../../src/core/toolAgent.js";
4-
import { getTools } from "../../src/tools/getTools.js";
5-
import { Logger } from "../../src/utils/logger.js";
3+
import { toolAgent } from '../../src/core/toolAgent.js';
4+
import { getTools } from '../../src/tools/getTools.js';
5+
import { Logger } from '../../src/utils/logger.js';
66

77
// Mock Anthropic SDK
8-
vi.mock("@anthropic-ai/sdk", () => {
8+
vi.mock('@anthropic-ai/sdk', () => {
99
return {
1010
default: vi.fn().mockImplementation(() => ({
1111
messages: {
@@ -14,10 +14,10 @@ vi.mock("@anthropic-ai/sdk", () => {
1414
.mockResolvedValueOnce({
1515
content: [
1616
{
17-
type: "tool_use",
18-
name: "respawn",
19-
id: "test-id",
20-
input: { respawnContext: "new context" },
17+
type: 'tool_use',
18+
name: 'respawn',
19+
id: 'test-id',
20+
input: { respawnContext: 'new context' },
2121
},
2222
],
2323
usage: { input_tokens: 10, output_tokens: 10 },
@@ -31,26 +31,26 @@ vi.mock("@anthropic-ai/sdk", () => {
3131
};
3232
});
3333

34-
describe("toolAgent respawn functionality", () => {
35-
const mockLogger = new Logger({ name: "test" });
34+
describe('toolAgent respawn functionality', () => {
35+
const mockLogger = new Logger({ name: 'test' });
3636
const tools = getTools();
3737

3838
beforeEach(() => {
39-
process.env.ANTHROPIC_API_KEY = "test-key";
39+
process.env.ANTHROPIC_API_KEY = 'test-key';
4040
vi.clearAllMocks();
4141
});
4242

43-
it("should handle respawn tool calls", async () => {
44-
const result = await toolAgent("initial prompt", tools, mockLogger, {
43+
it('should handle respawn tool calls', async () => {
44+
const result = await toolAgent('initial prompt', tools, mockLogger, {
4545
maxIterations: 2, // Need at least 2 iterations for respawn + empty response
46-
model: "test-model",
46+
model: 'test-model',
4747
maxTokens: 100,
4848
temperature: 0,
49-
getSystemPrompt: () => "test system prompt",
49+
getSystemPrompt: () => 'test system prompt',
5050
});
5151

5252
expect(result.result).toBe(
53-
"Maximum sub-agent iterations reach without successful completion",
53+
'Maximum sub-agent iterations reach without successful completion',
5454
);
5555
});
5656
});

0 commit comments

Comments
 (0)