@cat-factory/app 0.33.0 → 0.34.0

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.
@@ -53,10 +53,19 @@ export function fragmentsApi({ http, ws, scope }: ApiContext) {
53
53
  body: CreateDocumentFragmentInput,
54
54
  ) => http<PromptFragment>(`${scope(kind, id)}/document-fragments`, { method: 'POST', body }),
55
55
 
56
- // Force an immediate live re-resolve of a document-backed fragment.
57
- refreshFragment: (kind: FragmentOwnerKind, id: string, fragmentId: string) =>
56
+ // Force an immediate live re-resolve of a document-backed fragment. At the
57
+ // account scope the backend needs a `viaWorkspaceId` (the workspace whose
58
+ // document-source connection to fetch through); it is ignored at workspace scope.
59
+ refreshFragment: (
60
+ kind: FragmentOwnerKind,
61
+ id: string,
62
+ fragmentId: string,
63
+ viaWorkspaceId?: string,
64
+ ) =>
58
65
  http<PromptFragment>(
59
- `${scope(kind, id)}/prompt-fragments/${encodeURIComponent(fragmentId)}/refresh`,
66
+ `${scope(kind, id)}/prompt-fragments/${encodeURIComponent(fragmentId)}/refresh${
67
+ viaWorkspaceId ? `?viaWorkspaceId=${encodeURIComponent(viaWorkspaceId)}` : ''
68
+ }`,
60
69
  { method: 'POST' },
61
70
  ),
62
71
 
@@ -3,6 +3,7 @@ import { computed, ref } from 'vue'
3
3
  import type {
4
4
  CreateDocumentFragmentInput,
5
5
  CreatePromptFragmentInput,
6
+ FragmentOwnerKind,
6
7
  FragmentSource,
7
8
  LinkFragmentSourceInput,
8
9
  PromptFragment,
@@ -12,40 +13,62 @@ import type {
12
13
  import { useWorkspaceStore } from '~/stores/workspace'
13
14
 
14
15
  /**
15
- * Prompt-fragment library state (ADR 0006), scoped to the active board. Holds the
16
- * board's own (workspace-tier) fragments, its linked guideline repos, and the
17
- * merged catalog an agent actually sees (built-in account workspace). The
18
- * management surface targets the workspace tier; the resolved read is what every
19
- * agent run is selected from. `available` mirrors the backend's opt-in gate: a
20
- * 503 from the resolve probe means the feature is off and the UI hides its entry.
16
+ * Prompt-fragment library state (ADR 0006), scoped to a single owner a board
17
+ * (`workspace`) or an account. Holds that owner's own (raw) tier fragments, its
18
+ * linked guideline repos, and for the **workspace** tier only the merged
19
+ * catalog an agent actually sees (built-in account workspace). `available`
20
+ * mirrors the backend's opt-in gate: a 503 from the probe means the feature is off
21
+ * and the UI hides its entry.
22
+ *
23
+ * Two entry points share this setup: `useFragmentLibraryStore` (the workspace
24
+ * singleton that follows the active board, used by the navbar + the board modal)
25
+ * and `useFragmentLibrary(kind, ownerId)` (an owner-keyed store, used for the
26
+ * account tier). The account tier has no resolved/merged catalog and, for
27
+ * document-backed fragments, needs a `viaWorkspaceId` (document-source credentials
28
+ * are per-workspace).
21
29
  */
22
- export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
30
+ function fragmentLibrarySetup(kind: FragmentOwnerKind, resolveOwnerId: () => string | null) {
23
31
  const api = useApi()
24
- const workspace = useWorkspaceStore()
32
+
33
+ /** The merged/resolved catalog only exists at the workspace tier. */
34
+ const hasResolved = kind === 'workspace'
25
35
 
26
36
  /** null = not probed yet; true/false = library on/off. */
27
37
  const available = ref<boolean | null>(null)
28
- /** This board's hand-authored + sourced fragments (workspace tier, raw). */
38
+ /** This owner's hand-authored + sourced fragments (its own tier, raw). */
29
39
  const fragments = ref<PromptFragment[]>([])
30
- /** The merged catalog an agent sees (with each entry's winning tier). */
40
+ /** The merged catalog an agent sees (workspace tier only; empty otherwise). */
31
41
  const resolved = ref<ResolvedFragment[]>([])
32
- /** Linked guideline repos for this board. */
42
+ /** Linked guideline repos for this owner. */
33
43
  const sources = ref<FragmentSource[]>([])
34
44
  /** Per-source "changes available" counts from the last status check. */
35
45
  const sourceChanges = ref<Record<string, number>>({})
36
46
  const loading = ref(false)
47
+ /**
48
+ * Account-tier document fragments only: the workspace whose stored
49
+ * document-source connection is used to fetch/refresh the page (credentials are
50
+ * per-workspace). Set by the caller; ignored at the workspace scope (the owner
51
+ * board is used directly).
52
+ */
53
+ const viaWorkspaceId = ref<string | undefined>(undefined)
37
54
 
38
55
  const builtinCount = computed(() => resolved.value.filter((f) => f.tier === 'builtin').length)
39
56
 
40
- /** Probe the feature + load this board's tier, sources and resolved catalog. */
57
+ function requireOwnerId(): string {
58
+ const id = resolveOwnerId()
59
+ if (!id) throw new Error('No fragment-library owner')
60
+ return id
61
+ }
62
+
63
+ /** Probe the feature + load this owner's tier, sources and (ws) resolved catalog. */
41
64
  async function probe() {
42
- if (!workspace.workspaceId) return
43
- const id = workspace.requireId()
65
+ const id = resolveOwnerId()
66
+ if (!id) return
44
67
  try {
45
68
  const [tier, srcs, merged] = await Promise.all([
46
- api.listFragments('workspace', id),
47
- api.listFragmentSources('workspace', id).catch(() => [] as FragmentSource[]),
48
- api.getResolvedFragments(id),
69
+ api.listFragments(kind, id),
70
+ api.listFragmentSources(kind, id).catch(() => [] as FragmentSource[]),
71
+ hasResolved ? api.getResolvedFragments(id) : Promise.resolve([] as ResolvedFragment[]),
49
72
  ])
50
73
  fragments.value = tier
51
74
  sources.value = srcs
@@ -60,13 +83,14 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
60
83
  }
61
84
 
62
85
  async function refreshResolved() {
63
- resolved.value = await api.getResolvedFragments(workspace.requireId())
86
+ if (!hasResolved) return
87
+ resolved.value = await api.getResolvedFragments(requireOwnerId())
64
88
  }
65
89
 
66
90
  async function create(input: CreatePromptFragmentInput) {
67
91
  loading.value = true
68
92
  try {
69
- await api.createFragment('workspace', workspace.requireId(), input)
93
+ await api.createFragment(kind, requireOwnerId(), input)
70
94
  await Promise.all([reloadTier(), refreshResolved()])
71
95
  } finally {
72
96
  loading.value = false
@@ -74,7 +98,7 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
74
98
  }
75
99
 
76
100
  async function update(fragmentId: string, patch: UpdatePromptFragmentInput) {
77
- await api.updateFragment('workspace', workspace.requireId(), fragmentId, patch)
101
+ await api.updateFragment(kind, requireOwnerId(), fragmentId, patch)
78
102
  await Promise.all([reloadTier(), refreshResolved()])
79
103
  }
80
104
 
@@ -82,7 +106,10 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
82
106
  async function createDocumentFragment(input: CreateDocumentFragmentInput) {
83
107
  loading.value = true
84
108
  try {
85
- await api.createDocumentFragment('workspace', workspace.requireId(), input)
109
+ await api.createDocumentFragment(kind, requireOwnerId(), {
110
+ ...input,
111
+ ...(viaWorkspaceId.value ? { viaWorkspaceId: viaWorkspaceId.value } : {}),
112
+ })
86
113
  await Promise.all([reloadTier(), refreshResolved()])
87
114
  } finally {
88
115
  loading.value = false
@@ -93,31 +120,31 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
93
120
  async function refreshDocumentFragment(fragmentId: string) {
94
121
  loading.value = true
95
122
  try {
96
- await api.refreshFragment('workspace', workspace.requireId(), fragmentId)
123
+ await api.refreshFragment(kind, requireOwnerId(), fragmentId, viaWorkspaceId.value)
97
124
  await Promise.all([reloadTier(), refreshResolved()])
98
125
  } finally {
99
126
  loading.value = false
100
127
  }
101
128
  }
102
129
 
103
- /** Tombstone a fragment at the workspace tier (suppresses an inherited one). */
130
+ /** Tombstone a fragment at this tier (suppresses an inherited one). */
104
131
  async function remove(fragmentId: string) {
105
- await api.deleteFragment('workspace', workspace.requireId(), fragmentId)
132
+ await api.deleteFragment(kind, requireOwnerId(), fragmentId)
106
133
  await Promise.all([reloadTier(), refreshResolved()])
107
134
  }
108
135
 
109
136
  async function reloadTier() {
110
- fragments.value = await api.listFragments('workspace', workspace.requireId())
137
+ fragments.value = await api.listFragments(kind, requireOwnerId())
111
138
  }
112
139
 
113
140
  async function linkSource(input: LinkFragmentSourceInput) {
114
- const source = await api.linkFragmentSource('workspace', workspace.requireId(), input)
141
+ const source = await api.linkFragmentSource(kind, requireOwnerId(), input)
115
142
  sources.value = [source, ...sources.value]
116
143
  return source
117
144
  }
118
145
 
119
146
  async function unlinkSource(sourceId: string) {
120
- await api.unlinkFragmentSource('workspace', workspace.requireId(), sourceId)
147
+ await api.unlinkFragmentSource(kind, requireOwnerId(), sourceId)
121
148
  sources.value = sources.value.filter((s) => s.id !== sourceId)
122
149
  await refreshResolved()
123
150
  }
@@ -126,7 +153,7 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
126
153
  async function syncSource(sourceId: string) {
127
154
  loading.value = true
128
155
  try {
129
- const result = await api.syncFragmentSource('workspace', workspace.requireId(), sourceId)
156
+ const result = await api.syncFragmentSource(kind, requireOwnerId(), sourceId)
130
157
  delete sourceChanges.value[sourceId]
131
158
  await Promise.all([reloadSources(), refreshResolved()])
132
159
  return result
@@ -137,7 +164,7 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
137
164
 
138
165
  /** Cheap "check for changes" for a source; caches the changed count. */
139
166
  async function checkSource(sourceId: string) {
140
- const status = await api.fragmentSourceStatus('workspace', workspace.requireId(), sourceId)
167
+ const status = await api.fragmentSourceStatus(kind, requireOwnerId(), sourceId)
141
168
  sourceChanges.value = {
142
169
  ...sourceChanges.value,
143
170
  [sourceId]: status.changed ? status.changedCount : 0,
@@ -146,16 +173,19 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
146
173
  }
147
174
 
148
175
  async function reloadSources() {
149
- sources.value = await api.listFragmentSources('workspace', workspace.requireId())
176
+ sources.value = await api.listFragmentSources(kind, requireOwnerId())
150
177
  }
151
178
 
152
179
  return {
180
+ kind,
181
+ hasResolved,
153
182
  available,
154
183
  fragments,
155
184
  resolved,
156
185
  sources,
157
186
  sourceChanges,
158
187
  loading,
188
+ viaWorkspaceId,
159
189
  builtinCount,
160
190
  probe,
161
191
  refreshResolved,
@@ -169,4 +199,23 @@ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () => {
169
199
  syncSource,
170
200
  checkSource,
171
201
  }
172
- })
202
+ }
203
+
204
+ /**
205
+ * The workspace-tier library for the **active** board — a singleton that resolves
206
+ * the owner lazily, so it follows board switches and is shared by the navbar
207
+ * (SideBar/CommandBar probes) and the board fragment modal.
208
+ */
209
+ export const useFragmentLibraryStore = defineStore('fragmentLibrary', () =>
210
+ fragmentLibrarySetup('workspace', () => useWorkspaceStore().workspaceId),
211
+ )
212
+
213
+ /**
214
+ * An owner-keyed library store, used for the **account** tier (and reusable for any
215
+ * explicit owner). Keyed by `(kind, ownerId)` so each account gets isolated state.
216
+ */
217
+ export function useFragmentLibrary(kind: FragmentOwnerKind, ownerId: string) {
218
+ return defineStore(`fragmentLibrary:${kind}:${ownerId}`, () =>
219
+ fragmentLibrarySetup(kind, () => ownerId),
220
+ )()
221
+ }
package/app/stores/ui.ts CHANGED
@@ -96,9 +96,13 @@ export const useUiStore = defineStore('ui', () => {
96
96
  // `workspaceSettingsTab` lets other surfaces deep-link straight to a tab.
97
97
  const workspaceSettingsOpen = ref(false)
98
98
  const workspaceSettingsTab = ref('workspace')
99
- // Account/team-settings modal: the per-account members + roles + invitations + email
100
- // sender panel (`AccountTeamSettings`). Account-scoped (distinct from workspace settings).
99
+ // Account-settings modal: a single tabbed window for the per-account configuration
100
+ // the team panel (members + roles + invitations + email sender + account API keys,
101
+ // `AccountTeamSettings`) and the account-tier prompt-fragment library. Account-scoped
102
+ // (distinct from workspace settings). `accountSettingsTab` lets other surfaces deep-link
103
+ // straight to a tab.
101
104
  const accountSettingsOpen = ref(false)
105
+ const accountSettingsTab = ref('team')
102
106
  // Observability integration: the post-release-health connection panel (Datadog
103
107
  // today, pluggable). NB: distinct from `observabilityInstanceId` below, which is the
104
108
  // LLM per-call observability panel.
@@ -383,13 +387,17 @@ export const useUiStore = defineStore('ui', () => {
383
387
  function setWorkspaceSettingsTab(tab: string) {
384
388
  workspaceSettingsTab.value = tab
385
389
  }
386
- function openAccountSettings() {
390
+ function openAccountSettings(tab = 'team') {
387
391
  cameFromIntegrations.value = false
392
+ accountSettingsTab.value = tab
388
393
  accountSettingsOpen.value = true
389
394
  }
390
395
  function closeAccountSettings() {
391
396
  accountSettingsOpen.value = false
392
397
  }
398
+ function setAccountSettingsTab(tab: string) {
399
+ accountSettingsTab.value = tab
400
+ }
393
401
  function openObservabilityConnection() {
394
402
  cameFromIntegrations.value = false
395
403
  observabilityConnectionOpen.value = true
@@ -566,6 +574,7 @@ export const useUiStore = defineStore('ui', () => {
566
574
  workspaceSettingsOpen,
567
575
  workspaceSettingsTab,
568
576
  accountSettingsOpen,
577
+ accountSettingsTab,
569
578
  observabilityConnectionOpen,
570
579
  providerConnectionKind,
571
580
  modelConfigOpen,
@@ -630,6 +639,7 @@ export const useUiStore = defineStore('ui', () => {
630
639
  setWorkspaceSettingsTab,
631
640
  openAccountSettings,
632
641
  closeAccountSettings,
642
+ setAccountSettingsTab,
633
643
  openObservabilityConnection,
634
644
  closeObservabilityConnection,
635
645
  openProviderConnection,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/app",
3
- "version": "0.33.0",
3
+ "version": "0.34.0",
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",