Skip to content

Commit fc09960

Browse files
committed
chore: add oxfmt package formatting
1 parent 8b73df9 commit fc09960

488 files changed

Lines changed: 54245 additions & 46811 deletions

File tree

Some content is hidden

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

package-lock.json

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

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
"prepare": "husky",
99
"build": "nx run-many -t build",
1010
"lint": "nx run-many -t lint",
11+
"fmt": "oxfmt packages",
12+
"fmt:check": "oxfmt --check packages",
1113
"test": "nx run-many -t test",
1214
"test:watch": "nx run-many -t test --watch",
1315
"test:coverage": "nx run-many -t test --coverage",
@@ -31,6 +33,7 @@
3133
"@nx/js": "^22.4.0",
3234
"husky": "^9.1.7",
3335
"nx": "^22.4.0",
36+
"oxfmt": "^0.67.0",
3437
"vitest": "^4.1.8"
3538
},
3639
"engines": {

packages/agent-manager/.eslintrc.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
22
"parser": "@typescript-eslint/parser",
3-
"extends": [
4-
"eslint:recommended",
5-
"plugin:@typescript-eslint/recommended"
6-
],
3+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
74
"plugins": ["@typescript-eslint"],
85
"parserOptions": {
96
"ecmaVersion": 2022,

packages/agent-manager/package.json

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
{
22
"name": "@ai-devkit/agent-manager",
33
"version": "0.32.0",
4-
"type": "module",
54
"description": "Standalone agent detection and management utilities for AI DevKit",
5+
"keywords": [
6+
"agent",
7+
"ai",
8+
"claude",
9+
"manager"
10+
],
11+
"license": "MIT",
12+
"author": "",
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/codeaholicguy/ai-devkit.git",
16+
"directory": "packages/agent-manager"
17+
},
18+
"type": "module",
619
"main": "dist/index.js",
720
"types": "dist/index.d.ts",
821
"exports": {
@@ -18,22 +31,11 @@
1831
"test:watch": "vitest",
1932
"test:coverage": "vitest run --coverage",
2033
"lint": "eslint src --ext .ts",
34+
"fmt": "oxfmt",
35+
"fmt:check": "oxfmt --check",
2136
"typecheck": "tsc --noEmit",
2237
"clean": "rm -rf dist"
2338
},
24-
"keywords": [
25-
"ai",
26-
"agent",
27-
"manager",
28-
"claude"
29-
],
30-
"author": "",
31-
"license": "MIT",
32-
"repository": {
33-
"type": "git",
34-
"url": "git+https://github.com/codeaholicguy/ai-devkit.git",
35-
"directory": "packages/agent-manager"
36-
},
3739
"dependencies": {
3840
"better-sqlite3": "12.11.1",
3941
"uuid": "14.0.0"

0 commit comments

Comments
 (0)