Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 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 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": "rm -rf dist",
Comment thread
sourcery-ai[bot] marked this conversation as resolved.
Outdated
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
Expand Down
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