spec-cat 0.1.71 → 0.1.72
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/.output/nitro.json +1 -1
- package/.output/public/_nuxt/builds/latest.json +1 -1
- package/.output/public/_nuxt/builds/meta/5c9166a3-8293-4b7f-91bb-8db64fbff540.json +1 -0
- package/.output/server/chunks/_/aiProviderSelection.mjs +2 -2
- package/.output/server/chunks/_/chatGit.mjs +1 -1
- package/.output/server/chunks/_/git.mjs +1 -1
- package/.output/server/chunks/_/jobQueue.mjs +1 -1
- package/.output/server/chunks/_/worktreeSetup.mjs +1 -1
- package/.output/server/chunks/nitro/nitro.mjs +545 -545
- package/.output/server/chunks/routes/api/chat/generate-commit-message.post.mjs +27 -6
- package/.output/server/chunks/routes/api/chat/generate-commit-message.post.mjs.map +1 -1
- package/.output/server/chunks/routes/api/chat/worktree.post.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/_conversationId/archive.post.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/archives/_archiveId/restore.post.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/archives/_archiveId_.delete.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/archives.delete.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/archives.get.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations/update.post.mjs +1 -1
- package/.output/server/chunks/routes/api/conversations.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/branches.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/checkout.post.mjs +1 -1
- package/.output/server/chunks/routes/api/git/commit/_id_.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/graph.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/log.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/merge-base.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/status.get.mjs +1 -1
- package/.output/server/chunks/routes/api/git/tag/_name_.get.mjs +1 -1
- package/.output/server/chunks/routes/api/index.post.mjs +1 -1
- package/.output/server/chunks/routes/api/index.post2.mjs +1 -1
- package/.output/server/chunks/routes/api/jobs/_id/cancel.post.mjs +1 -1
- package/.output/server/chunks/routes/api/jobs/_id_.get.mjs +1 -1
- package/.output/server/chunks/routes/api/rebase/ai-resolve.post.mjs +1 -1
- package/.output/server/chunks/routes/api/repository/status.get.mjs +1 -1
- package/.output/server/chunks/routes/api/settings.get.mjs +2 -2
- package/.output/server/chunks/routes/api/settings.post.mjs +2 -2
- package/.output/server/chunks/routes/api/skills/_skillId/prompt.post.mjs +1 -1
- package/.output/server/chunks/routes/api/specs/_featureId/_...filename_.get.mjs +1 -1
- package/.output/server/chunks/routes/api/specs/_featureId/_...filename_.put.mjs +1 -1
- package/.output/server/chunks/routes/api/specs/traceability/_featureId_.get.mjs +1 -1
- package/.output/server/chunks/routes/api/worktrees/_name/switch.post.mjs +1 -1
- package/.output/server/chunks/routes/api/worktrees/_name_.delete.mjs +1 -1
- package/.output/server/chunks/routes/terminal-ws.mjs +1 -1
- package/.output/server/package.json +1 -1
- package/package.json +1 -1
- package/.output/public/_nuxt/builds/meta/e6c4063a-fc4f-40b5-9c75-c862c39904c3.json +0 -1
package/.output/nitro.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"id":"
|
|
1
|
+
{"id":"5c9166a3-8293-4b7f-91bb-8db64fbff540","timestamp":1783477701263}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"id":"5c9166a3-8293-4b7f-91bb-8db64fbff540","timestamp":1783477701263,"prerendered":[]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { q as readSpecCatStore } from '../nitro/nitro.mjs';
|
|
2
2
|
import { e as ensureProvidersInitialized, g as getProvider } from './aiProviderRegistry.mjs';
|
|
3
3
|
|
|
4
4
|
const DEFAULT_PROVIDER_ID = "claude";
|
|
@@ -72,5 +72,5 @@ async function guardServerProviderCapability(capability, nextStep) {
|
|
|
72
72
|
return guardProviderCapability(selection, capability, nextStep);
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
export { DEFAULT_MODEL_KEY as D,
|
|
75
|
+
export { DEFAULT_MODEL_KEY as D, guardProviderCapability as a, getServerProviderSelection as b, DEFAULT_PROVIDER_ID as c, guardServerProviderCapability as g, resolveServerProviderSelection as r };
|
|
76
76
|
//# sourceMappingURL=aiProviderSelection.mjs.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { p as execGit, o as execGitCommand, a as getProjectDir, e as execGitArgs } from '../nitro/nitro.mjs';
|
|
2
2
|
|
|
3
3
|
var FileChangeStatus = /* @__PURE__ */ ((FileChangeStatus2) => {
|
|
4
4
|
FileChangeStatus2["Added"] = "A";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { existsSync, statSync, openSync, readSync, closeSync } from 'node:fs';
|
|
2
2
|
import { e as eventBus, G as GLOBAL_CHANNEL } from './eventBus.mjs';
|
|
3
|
-
import {
|
|
3
|
+
import { f as readConversationFromStorage, a as getProjectDir, s as updateConversationProviderSessionInStorage } from '../nitro/nitro.mjs';
|
|
4
4
|
import { exec } from 'node:child_process';
|
|
5
5
|
import { promisify } from 'node:util';
|
|
6
6
|
import { i as isSpecCatWorktreePath, b as getChatWorktreeIdFromPath } from './worktreePaths.mjs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { existsSync } from 'node:fs';
|
|
2
2
|
import { readFile } from 'node:fs/promises';
|
|
3
3
|
import { join } from 'node:path';
|
|
4
|
-
import { a as getProjectDir, v as isUsableBaseBranchName,
|
|
4
|
+
import { a as getProjectDir, v as isUsableBaseBranchName, h as resolvePreferredBaseBranch, o as execGitCommand, B as getSpecCatDataDir, u as upsertConversationInStorage, S as STORAGE_VERSION, y as generateConversationTitle } from '../nitro/nitro.mjs';
|
|
5
5
|
import { g as getChatWorktreePath } from './worktreePaths.mjs';
|
|
6
6
|
|
|
7
7
|
async function setupConversationWorktree(options) {
|