goto-assistant 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -10
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -73,6 +73,12 @@ PORT=3001 npx goto-assistant
|
|
|
73
73
|
|
|
74
74
|
3. Open `http://localhost:3000` — you'll be redirected to the setup page on first run to configure your AI provider and API key.
|
|
75
75
|
|
|
76
|
+
4. Lint and test:
|
|
77
|
+
```bash
|
|
78
|
+
pnpm lint
|
|
79
|
+
pnpm test
|
|
80
|
+
```
|
|
81
|
+
|
|
76
82
|
## Configuration
|
|
77
83
|
|
|
78
84
|
App configuration is stored in `data/config.json` (created on first setup). MCP server configuration is stored separately in `data/mcp.json`. Environment variables override file config:
|
|
@@ -101,13 +107,3 @@ cp .mcp.json.example .mcp.json
|
|
|
101
107
|
```
|
|
102
108
|
|
|
103
109
|
Edit `.mcp.json` to set your preferred AI provider/model for the cron server. This file is gitignored since it contains personal preferences.
|
|
104
|
-
|
|
105
|
-
## Development
|
|
106
|
-
|
|
107
|
-
```bash
|
|
108
|
-
pnpm dev # run with tsx (hot TypeScript execution)
|
|
109
|
-
pnpm build # compile TypeScript to dist/
|
|
110
|
-
pnpm start # run compiled build
|
|
111
|
-
pnpm test # run tests
|
|
112
|
-
pnpm test:watch # run tests in watch mode
|
|
113
|
-
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "goto-assistant",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Lightweight, self-hosted personal AI assistant",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"packageManager": "pnpm@10.29.3",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"dev": "tsx src/index.ts",
|
|
34
34
|
"build": "tsc",
|
|
35
35
|
"start": "node dist/index.js",
|
|
36
|
+
"lint": "eslint .",
|
|
36
37
|
"test": "vitest run",
|
|
37
38
|
"test:watch": "vitest",
|
|
38
39
|
"prepublishOnly": "npm run build"
|
|
@@ -48,12 +49,15 @@
|
|
|
48
49
|
"zod": "^4.0.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
52
|
+
"@eslint/js": "^9.39.2",
|
|
51
53
|
"@types/better-sqlite3": "^7.0.0",
|
|
52
54
|
"@types/express": "^5.0.0",
|
|
53
55
|
"@types/multer": "^2.0.0",
|
|
54
56
|
"@types/ws": "^8.0.0",
|
|
57
|
+
"eslint": "^9.39.2",
|
|
55
58
|
"tsx": "^4.0.0",
|
|
56
59
|
"typescript": "^5.0.0",
|
|
60
|
+
"typescript-eslint": "^8.55.0",
|
|
57
61
|
"vitest": "^3.0.0"
|
|
58
62
|
},
|
|
59
63
|
"pnpm": {
|