Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lighthouse-agent-tooling
# Lighthouse Agent Tooling

Lighthouse Agent Tooling – A set of connectors, IDE extensions, and AI-native developer tools to seamlessly integrate Lighthouse into AI-powered workflows. Supports MCP (Model Context Protocol) connectors, Cursor/IDE extensions for pinning and encrypting datasets/models.

Expand All @@ -12,10 +12,6 @@ This repo uses ESLint (flat config) and Prettier for consistent code quality and

Pre-commit hooks via Husky run lint-staged to format and lint changed files.

# Lighthouse Agent Tooling

Lighthouse Agent Tooling – A set of connectors, IDE extensions, and AI-native developer tools to seamlessly integrate Lighthouse into AI-powered workflows. Supports MCP (Model Context Protocol) connectors, Cursor/IDE extensions for pinning and encrypting datasets/models.

## Prerequisites

- **Node.js**: v18+ (recommended: v22+)
Expand Down
2 changes: 1 addition & 1 deletion apps/mcp-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"clean": "rimraf dist",
"check-types": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"keywords": [],
"author": "",
"license": "ISC",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Patrick-Ehimen/lighthouse-agent-tooling/issues"
Expand All @@ -45,7 +45,8 @@
"lint-staged": "^15.2.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.5"
"@types/jest": "^29.5.5",
"rimraf": "^6.0.1"
},
"pnpm": {
"overrides": {
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist"
"clean": "rimraf dist"
},
"devDependencies": {
"jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk-wrapper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist"
"clean": "rimraf dist"
},
"dependencies": {
"@lighthouse-tooling/types": "workspace:*",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist"
"clean": "rimraf dist"
},
"devDependencies": {
"jest": "^29.7.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:vscode": "npm run compile && node ./out/test/runTest.js",
"clean": "rm -rf dist out"
"clean": "rimraf dist out"
},
"dependencies": {
"@lighthouse-tooling/shared": "workspace:*",
Expand Down
167 changes: 167 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"dependsOn": ["^build"],
"outputs": ["build/**", "dist/**", "out/**", ".next/**", "!.next/cache/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
"type-check": {
"dependsOn": ["^type-check"]
},
"dev": {
"persistent": true,
Expand Down
Loading