fss-link 1.0.47 → 1.0.49
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/dist/config/database.ts +72 -0
- package/dist/config/modelManager.ts +56 -5
- package/dist/package.json +87 -87
- package/dist/src/config/database.d.ts +24 -7
- package/dist/src/config/database.js +170 -56
- package/dist/src/config/database.js.map +1 -1
- package/dist/src/config/modelManager.d.ts +5 -0
- package/dist/src/config/modelManager.js +50 -5
- package/dist/src/config/modelManager.js.map +1 -1
- package/dist/src/generated/git-commit.d.ts +1 -1
- package/dist/src/generated/git-commit.js +1 -1
- package/dist/src/ui/commands/contextCommand.js.map +1 -1
- package/dist/src/ui/commands/mcpCommand.js.map +1 -1
- package/dist/src/ui/commands/setupGithubCommand.js.map +1 -1
- package/dist/src/ui/components/ContextSummaryDisplay.js.map +1 -1
- package/dist/src/ui/components/ContextUsageDisplay.js +47 -5
- package/dist/src/ui/components/ContextUsageDisplay.js.map +1 -1
- package/dist/src/ui/hooks/atCommandProcessor.js.map +1 -1
- package/dist/src/ui/hooks/useWelcomeBack.js.map +1 -1
- package/dist/src/utils/installationInfo.js +4 -4
- package/dist/src/utils/installationInfo.js.map +1 -1
- package/dist/src/utils/sandbox.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/installationInfo.ts +4 -4
- package/package.json +2 -2
|
@@ -94,7 +94,7 @@ export function getInstallationInfo(
|
|
|
94
94
|
|
|
95
95
|
// Check for pnpm
|
|
96
96
|
if (realPath.includes('/.pnpm/global')) {
|
|
97
|
-
const updateCommand = 'pnpm add -g fss-link
|
|
97
|
+
const updateCommand = 'pnpm add -g fss-link@latest';
|
|
98
98
|
return {
|
|
99
99
|
packageManager: PackageManager.PNPM,
|
|
100
100
|
isGlobal: true,
|
|
@@ -107,7 +107,7 @@ export function getInstallationInfo(
|
|
|
107
107
|
|
|
108
108
|
// Check for yarn
|
|
109
109
|
if (realPath.includes('/.yarn/global')) {
|
|
110
|
-
const updateCommand = 'yarn global add fss-link
|
|
110
|
+
const updateCommand = 'yarn global add fss-link@latest';
|
|
111
111
|
return {
|
|
112
112
|
packageManager: PackageManager.YARN,
|
|
113
113
|
isGlobal: true,
|
|
@@ -127,7 +127,7 @@ export function getInstallationInfo(
|
|
|
127
127
|
};
|
|
128
128
|
}
|
|
129
129
|
if (realPath.includes('/.bun/bin')) {
|
|
130
|
-
const updateCommand = 'bun add -g fss-link
|
|
130
|
+
const updateCommand = 'bun add -g fss-link@latest';
|
|
131
131
|
return {
|
|
132
132
|
packageManager: PackageManager.BUN,
|
|
133
133
|
isGlobal: true,
|
|
@@ -160,7 +160,7 @@ export function getInstallationInfo(
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
// Assume global npm
|
|
163
|
-
const updateCommand = 'npm install -g fss-link
|
|
163
|
+
const updateCommand = 'npm install -g fss-link@latest';
|
|
164
164
|
return {
|
|
165
165
|
packageManager: PackageManager.NPM,
|
|
166
166
|
isGlobal: true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fss-link",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.49",
|
|
4
4
|
"description": "FSS Link - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"sandboxImageUri": "ghcr.io/fsscoding/fss-link:0.0.10"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"fss-link-core": "1.0.
|
|
31
|
+
"fss-link-core": "1.0.46",
|
|
32
32
|
"@google/genai": "1.9.0",
|
|
33
33
|
"@iarna/toml": "^2.2.5",
|
|
34
34
|
"@modelcontextprotocol/sdk": "^1.15.1",
|