@cat-factory/app 0.47.8 → 0.47.9
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/app/components/brainstorm/BrainstormWindow.vue +1 -0
- package/app/components/clarity/ClarityReviewWindow.vue +1 -0
- package/app/components/panels/AgentStepDetail.vue +1 -0
- package/app/components/panels/InspectorPanel.vue +1 -0
- package/app/components/requirements/RequirementsReviewWindow.vue +1 -0
- package/app/pages/index.vue +1 -0
- package/package.json +1 -1
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
// the user returns to the board, summoned back (a notification) only if the re-run raises new
|
|
8
8
|
// options or hits the iteration cap. The converged direction — not the original description — is
|
|
9
9
|
// what the downstream stage (the requirements review / the architect) consumes.
|
|
10
|
+
import IterationCapPrompt from '~/components/pipeline/IterationCapPrompt.vue'
|
|
10
11
|
import { parseOutputOutline } from '~/utils/agentOutput'
|
|
11
12
|
import type {
|
|
12
13
|
BrainstormItem,
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
// findings or hits the iteration cap. The clarified bug report — not the original
|
|
9
9
|
// description — is what every downstream agent step (the bug investigator, the coder)
|
|
10
10
|
// consumes.
|
|
11
|
+
import IterationCapPrompt from '~/components/pipeline/IterationCapPrompt.vue'
|
|
11
12
|
import { parseOutputOutline } from '~/utils/agentOutput'
|
|
12
13
|
import type {
|
|
13
14
|
ClarityItemStatus,
|
|
@@ -8,6 +8,7 @@ import StepMetadataCard from '~/components/panels/StepMetadataCard.vue'
|
|
|
8
8
|
import StepTestReport from '~/components/panels/StepTestReport.vue'
|
|
9
9
|
import EnvironmentStatusPanel from '~/components/environments/EnvironmentStatusPanel.vue'
|
|
10
10
|
import ProvisioningLogsDrawer from '~/components/provisioning/ProvisioningLogsDrawer.vue'
|
|
11
|
+
import IterationCapPrompt from '~/components/pipeline/IterationCapPrompt.vue'
|
|
11
12
|
import { useStepTimer } from '~/composables/useStepTimer'
|
|
12
13
|
import { useStepProse } from '~/composables/useStepProse'
|
|
13
14
|
import { useStepApproval } from '~/composables/useStepApproval'
|
|
@@ -12,6 +12,7 @@ import TaskDependencies from '~/components/panels/inspector/TaskDependencies.vue
|
|
|
12
12
|
import TaskStructure from '~/components/panels/inspector/TaskStructure.vue'
|
|
13
13
|
import TaskRunSettings from '~/components/panels/inspector/TaskRunSettings.vue'
|
|
14
14
|
import TaskExecution from '~/components/panels/inspector/TaskExecution.vue'
|
|
15
|
+
import TaskEstimateBadge from '~/components/panels/inspector/TaskEstimateBadge.vue'
|
|
15
16
|
import EpicChildren from '~/components/panels/inspector/EpicChildren.vue'
|
|
16
17
|
import RecurringScheduleSettings from '~/components/panels/inspector/RecurringScheduleSettings.vue'
|
|
17
18
|
import AgentFailureCard from '~/components/board/AgentFailureCard.vue'
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
// agent step and the spec-writer consume.
|
|
10
10
|
import { parseOutputOutline } from '~/utils/agentOutput'
|
|
11
11
|
import StepRestartControl from '~/components/panels/StepRestartControl.vue'
|
|
12
|
+
import IterationCapPrompt from '~/components/pipeline/IterationCapPrompt.vue'
|
|
12
13
|
import type {
|
|
13
14
|
RequirementRecommendation,
|
|
14
15
|
RequirementReview,
|
package/app/pages/index.vue
CHANGED
|
@@ -3,6 +3,7 @@ import BoardCanvas from '~/components/board/BoardCanvas.vue'
|
|
|
3
3
|
import SideBar from '~/components/layout/SideBar.vue'
|
|
4
4
|
import BoardToolbar from '~/components/layout/BoardToolbar.vue'
|
|
5
5
|
import SpendWarningBanner from '~/components/layout/SpendWarningBanner.vue'
|
|
6
|
+
import TranslationWarningBanner from '~/components/layout/TranslationWarningBanner.vue'
|
|
6
7
|
import GitHubPatBanner from '~/components/layout/GitHubPatBanner.vue'
|
|
7
8
|
import AiProvidersBanner from '~/components/layout/AiProvidersBanner.vue'
|
|
8
9
|
import ProviderConfigBanner from '~/components/layout/ProviderConfigBanner.vue'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.9",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|