@tecet/ollm 0.1.3 → 0.1.4
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 +529 -529
- package/dist/cli.js +291 -244
- package/dist/cli.js.map +3 -3
- package/dist/config/LLM_profiles.json +4 -4
- package/dist/config/settingsService.d.ts +5 -0
- package/dist/config/settingsService.d.ts.map +1 -1
- package/dist/config/settingsService.js +20 -0
- package/dist/config/settingsService.js.map +1 -1
- package/dist/config/toolsConfig.d.ts +6 -3
- package/dist/config/toolsConfig.d.ts.map +1 -1
- package/dist/config/toolsConfig.js +52 -3
- package/dist/config/toolsConfig.js.map +1 -1
- package/dist/features/chat/hooks/useChatNetwork.d.ts.map +1 -1
- package/dist/features/chat/hooks/useChatNetwork.js +15 -4
- package/dist/features/chat/hooks/useChatNetwork.js.map +1 -1
- package/dist/features/context/ContextManagerContext.d.ts.map +1 -1
- package/dist/features/context/ContextManagerContext.js +14 -73
- package/dist/features/context/ContextManagerContext.js.map +1 -1
- package/dist/features/context/hooks/useToolSupport.d.ts.map +1 -1
- package/dist/features/context/hooks/useToolSupport.js +13 -5
- package/dist/features/context/hooks/useToolSupport.js.map +1 -1
- package/dist/features/context/utils/systemPromptBuilder.d.ts.map +1 -1
- package/dist/features/context/utils/systemPromptBuilder.js +6 -34
- package/dist/features/context/utils/systemPromptBuilder.js.map +1 -1
- package/dist/nonInteractive.d.ts.map +1 -1
- package/dist/nonInteractive.js +1 -2
- package/dist/nonInteractive.js.map +1 -1
- package/dist/templates/assistant/tier3.txt +2 -0
- package/dist/templates/system/CoreMandates.txt +3 -0
- package/dist/templates/system/ToolDescriptions.txt +11 -3
- package/dist/templates/system/skills/SkillsAssistant.txt +1 -2
- package/dist/ui/App.js +15 -15
- package/dist/ui/components/launch/VersionBanner.js +1 -1
- package/dist/ui/components/layout/KeybindsLegend.d.ts.map +1 -1
- package/dist/ui/components/layout/KeybindsLegend.js +1 -1
- package/dist/ui/components/layout/KeybindsLegend.js.map +1 -1
- package/dist/ui/components/tabs/BugReportTab.js +1 -1
- package/dist/ui/components/tools/CategorySection.d.ts.map +1 -1
- package/dist/ui/components/tools/CategorySection.js +1 -0
- package/dist/ui/components/tools/CategorySection.js.map +1 -1
- package/dist/ui/contexts/__tests__/mcpTestUtils.d.ts +14 -14
- package/docs/DevelopmentRoadmap/OLLM-CLI_Releases.md +419 -419
- package/docs/DevelopmentRoadmap/RoadmapVisual.md +372 -372
- package/docs/LLM Models/LLM_ModelsList.md +1071 -1071
- package/docs/MCP/MCP_Architecture.md +1086 -1086
- package/package.json +82 -82
package/package.json
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@tecet/ollm",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Local-first CLI for open-source LLMs with tools, hooks, and MCP integration",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"ollm": "./dist/cli.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"README.md",
|
|
12
|
-
"LICENSE",
|
|
13
|
-
"docs"
|
|
14
|
-
],
|
|
15
|
-
"engines": {
|
|
16
|
-
"node": ">=20.0.0"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"build": "tsc",
|
|
20
|
-
"dev": "tsc -w",
|
|
21
|
-
"start": "node dist/cli.js",
|
|
22
|
-
"test": "vitest",
|
|
23
|
-
"prepack": "node ../../scripts/copy-docs-to-package.cjs .",
|
|
24
|
-
"postpack": "node ../../scripts/remove-docs-from-package.cjs ."
|
|
25
|
-
},
|
|
26
|
-
"keywords": [
|
|
27
|
-
"llm",
|
|
28
|
-
"cli",
|
|
29
|
-
"ollama",
|
|
30
|
-
"ai",
|
|
31
|
-
"local",
|
|
32
|
-
"mcp",
|
|
33
|
-
"tools",
|
|
34
|
-
"context-management",
|
|
35
|
-
"terminal",
|
|
36
|
-
"tui",
|
|
37
|
-
"react",
|
|
38
|
-
"ink",
|
|
39
|
-
"open-source",
|
|
40
|
-
"local-first"
|
|
41
|
-
],
|
|
42
|
-
"repository": {
|
|
43
|
-
"type": "git",
|
|
44
|
-
"url": "https://github.com/tecet/ollm.git"
|
|
45
|
-
},
|
|
46
|
-
"bugs": {
|
|
47
|
-
"url": "https://github.com/tecet/ollm/issues"
|
|
48
|
-
},
|
|
49
|
-
"homepage": "https://github.com/tecet/ollm#readme",
|
|
50
|
-
"license": "Apache-2.0",
|
|
51
|
-
"author": "OLLM CLI Contributors",
|
|
52
|
-
"dependencies": {
|
|
53
|
-
"@vitest/coverage-v8": "4.0.17",
|
|
54
|
-
"ajv": "^8.12.0",
|
|
55
|
-
"ajv-formats": "^2.1.1",
|
|
56
|
-
"esbuild": "0.27.2",
|
|
57
|
-
"fdir": "^6.5.0",
|
|
58
|
-
"glob": "^13.0.0",
|
|
59
|
-
"ignore": "^5.3.2",
|
|
60
|
-
"ink": "^6.6.0",
|
|
61
|
-
"ink-spinner": "^5.0.0",
|
|
62
|
-
"jimp": "^1.6.0",
|
|
63
|
-
"picomatch": "^4.0.3",
|
|
64
|
-
"react": "19.2.3",
|
|
65
|
-
"react-devtools-core": "^6.1.2",
|
|
66
|
-
"shiki": "^3.21.0",
|
|
67
|
-
"simple-git": "^3.30.0",
|
|
68
|
-
"terminal-image": "^1.1.0",
|
|
69
|
-
"node-pty": "^1.1.0",
|
|
70
|
-
"@xterm/headless": "^6.0.0",
|
|
71
|
-
"ink-text-input": "^6.0.0",
|
|
72
|
-
"sharp": "^0.34.5",
|
|
73
|
-
"vitest": "4.0.17",
|
|
74
|
-
"yaml": "^2.3.4",
|
|
75
|
-
"yargs": "^17.7.0"
|
|
76
|
-
},
|
|
77
|
-
"devDependencies": {
|
|
78
|
-
"@types/react": "^19.0.0",
|
|
79
|
-
"@types/yargs": "^17.0.0",
|
|
80
|
-
"ink-testing-library": "github:vadimdemedes/ink-testing-library"
|
|
81
|
-
}
|
|
82
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@tecet/ollm",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Local-first CLI for open-source LLMs with tools, hooks, and MCP integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"ollm": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md",
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"docs"
|
|
14
|
+
],
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.0.0"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsc",
|
|
20
|
+
"dev": "tsc -w",
|
|
21
|
+
"start": "node dist/cli.js",
|
|
22
|
+
"test": "vitest",
|
|
23
|
+
"prepack": "node ../../scripts/copy-docs-to-package.cjs .",
|
|
24
|
+
"postpack": "node ../../scripts/remove-docs-from-package.cjs ."
|
|
25
|
+
},
|
|
26
|
+
"keywords": [
|
|
27
|
+
"llm",
|
|
28
|
+
"cli",
|
|
29
|
+
"ollama",
|
|
30
|
+
"ai",
|
|
31
|
+
"local",
|
|
32
|
+
"mcp",
|
|
33
|
+
"tools",
|
|
34
|
+
"context-management",
|
|
35
|
+
"terminal",
|
|
36
|
+
"tui",
|
|
37
|
+
"react",
|
|
38
|
+
"ink",
|
|
39
|
+
"open-source",
|
|
40
|
+
"local-first"
|
|
41
|
+
],
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/tecet/ollm.git"
|
|
45
|
+
},
|
|
46
|
+
"bugs": {
|
|
47
|
+
"url": "https://github.com/tecet/ollm/issues"
|
|
48
|
+
},
|
|
49
|
+
"homepage": "https://github.com/tecet/ollm#readme",
|
|
50
|
+
"license": "Apache-2.0",
|
|
51
|
+
"author": "OLLM CLI Contributors",
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@vitest/coverage-v8": "4.0.17",
|
|
54
|
+
"ajv": "^8.12.0",
|
|
55
|
+
"ajv-formats": "^2.1.1",
|
|
56
|
+
"esbuild": "0.27.2",
|
|
57
|
+
"fdir": "^6.5.0",
|
|
58
|
+
"glob": "^13.0.0",
|
|
59
|
+
"ignore": "^5.3.2",
|
|
60
|
+
"ink": "^6.6.0",
|
|
61
|
+
"ink-spinner": "^5.0.0",
|
|
62
|
+
"jimp": "^1.6.0",
|
|
63
|
+
"picomatch": "^4.0.3",
|
|
64
|
+
"react": "19.2.3",
|
|
65
|
+
"react-devtools-core": "^6.1.2",
|
|
66
|
+
"shiki": "^3.21.0",
|
|
67
|
+
"simple-git": "^3.30.0",
|
|
68
|
+
"terminal-image": "^1.1.0",
|
|
69
|
+
"node-pty": "^1.1.0",
|
|
70
|
+
"@xterm/headless": "^6.0.0",
|
|
71
|
+
"ink-text-input": "^6.0.0",
|
|
72
|
+
"sharp": "^0.34.5",
|
|
73
|
+
"vitest": "4.0.17",
|
|
74
|
+
"yaml": "^2.3.4",
|
|
75
|
+
"yargs": "^17.7.0"
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/react": "^19.0.0",
|
|
79
|
+
"@types/yargs": "^17.0.0",
|
|
80
|
+
"ink-testing-library": "github:vadimdemedes/ink-testing-library"
|
|
81
|
+
}
|
|
82
|
+
}
|