@quantiya/codevibe-claude-plugin 2.0.24 → 2.0.26

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.
Files changed (27) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/dist/server.js +7 -7
  3. package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-publication.test.d.ts +1 -0
  4. package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +1 -0
  5. package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-publication.d.ts +14 -0
  6. package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +3 -2
  7. package/node_modules/@quantiya/codevibe-core/dist/index.js +621 -430
  8. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-browser.d.ts +42 -2
  9. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/audit-runner.d.ts +13 -1
  10. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +8 -0
  11. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +649 -87
  12. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/flag-command.d.ts +4 -1
  13. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +16 -2
  14. package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +2 -0
  15. package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +32 -32
  16. package/node_modules/@quantiya/codevibe-core/package.json +1 -1
  17. package/node_modules/fs-ext/build/Makefile +347 -0
  18. package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
  19. package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
  20. package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
  21. package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
  22. package/node_modules/fs-ext/build/binding.Makefile +6 -0
  23. package/node_modules/fs-ext/build/config.gypi +503 -0
  24. package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
  25. package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
  26. package/node_modules/keytar/build/Release/keytar.node +0 -0
  27. package/package.json +2 -2
@@ -9,7 +9,7 @@ import type { AuditFlagIndex } from './types';
9
9
  * Shape-only: coordinates + wire kind + the precomputed flaggable bit; the
10
10
  * decrypted payload never leaves the render.
11
11
  */
12
- export declare function buildAuditFlagIndex(taskId: string, model: AuditBrowserModel): AuditFlagIndex;
12
+ export declare function buildAuditFlagIndex(taskId: string, model: AuditBrowserModel, sessionId?: string): AuditFlagIndex;
13
13
  /**
14
14
  * The minimal AppSync surface `/flag` needs — the existing
15
15
  * `recordExecutionEvent` Class-A method (D4: the full plumbing below it
@@ -37,6 +37,9 @@ export interface RunFlagCommandDeps {
37
37
  export type RunFlagCommandResult = {
38
38
  kind: 'no_index';
39
39
  line: string;
40
+ } | {
41
+ kind: 'cross_session_unsupported';
42
+ line: string;
40
43
  } | {
41
44
  kind: 'unknown_entry';
42
45
  line: string;
@@ -234,7 +234,7 @@ export { CONTEXT_SESSION_PSEUDO_TASK_NAMESPACE, deriveSessionPseudoTaskId, audit
234
234
  export { configureContextItemsHostedSync, wakeContextItemsHostedSync, drainContextItemsHostedSync, clearContextItemsHostedSync, contextItemsHostedSyncStatePath, type ContextItemsHostedSyncDeps, } from './context-items-hosted-sync';
235
235
  export { compactSessionContext, maybeFireCompactionSafetyValve, rehydrateSessionContext, renderRehydratedSessionContext, distillItems, projectDistilledForRole, loadCompactionCache, compactionCachePath, onTaskBoundary, gcContextItemLogs, scheduleContextItemsGc, COMPACTION_SAFETY_VALVE_TAIL_BYTES, COMPACTION_KEEP_HOT_RECENT_ITEMS, CONTEXT_ITEMS_RETENTION_MS, SESSION_CONTEXT_SECTION_MAX_CHARS, type DistilledFact, type DistilledTaskSummary, type SessionCompactionCache, type CompactionResult, type RehydratedSessionContext, } from './context-compaction';
236
236
  export { routeSlashCommand, applySlashOutput, type SlashOutput, type ShellAction, } from './slash-router';
237
- export { buildAuditBrowserModel, routeAuditEntry, auditKindLabel, auditKindCopy, renderAuditBrowserText, renderAuditEntryText, ENTRY_DETAILS_UNAVAILABLE, NO_AUDIT_ENTRIES, AUDIT_LOG_TOO_LARGE, AUDIT_LOG_TITLE, AUDIT_BROWSER_MAX_HEADLINE, WIRE_PUBLIC_PLAINTEXT_KINDS, type AuditBrowserModel, type AuditEntryModel, type AuditReviewerVerdictModel, type AuditTaskAuthorizedModel, type DecryptContentFn, } from './audit-browser';
237
+ export { buildAuditBrowserModel, routeAuditEntry, auditKindLabel, auditKindCopy, renderAuditBrowserText, renderAuditEntryText, ENTRY_DETAILS_UNAVAILABLE, NO_AUDIT_ENTRIES, AUDIT_LOG_TOO_LARGE, AUDIT_LOG_TITLE, AUDIT_BROWSER_MAX_HEADLINE, WIRE_PUBLIC_PLAINTEXT_KINDS, formatAuditExport, type AuditDetailRow, type AuditFilterOptions, type AuditExportFormat, type AuditExportPayload, type AuditBrowserModel, type AuditEntryModel, type AuditReviewerVerdictModel, type AuditTaskAuthorizedModel, type DecryptContentFn, } from './audit-browser';
238
238
  export { runAuditBrowser, renderAuditResultText, AUDIT_BROWSER_UPGRADE_HINT, type RunAuditBrowserResult, type RunAuditBrowserDeps, } from './audit-runner';
239
239
  export { buildAuditFlagIndex, runFlagCommand, renderFlagResultText, FLAG_NO_INDEX_LINE, type RunFlagCommandResult, type RunFlagCommandDeps, type FlagAppSyncClient, } from './flag-command';
240
240
  export { AuditLogPanel } from './components/AuditLogPanel';
@@ -807,7 +807,13 @@ export interface HandleShellUserInputDeps extends StructuralSummaryRunDeps {
807
807
  * `args.session.sessionId`. Tests inject a stub to drive the PENDING-marker
808
808
  * rewrite without live fetch / decrypt.
809
809
  */
810
- runAuditBrowserFn?: (taskId: string) => Promise<RunAuditBrowserResult>;
810
+ runAuditBrowserFn?: (taskId: string, options?: {
811
+ kind?: string;
812
+ verdictsOnly?: boolean;
813
+ limit?: number;
814
+ offset?: number;
815
+ sessionId?: string;
816
+ }) => Promise<RunAuditBrowserResult>;
811
817
  /**
812
818
  * O1 C1 (#652) — Test seam for the async `/flag <entry-id>` dispatch.
813
819
  * Defaults to `runFlagCommand` over `args.appsyncClient` + the retained
@@ -933,6 +939,14 @@ export declare function buildContinuationActionDeps(args: RunOrchestrationShellA
933
939
  * The URL regex is copied from `protectUrls` (unexported in local-advisory.ts).
934
940
  */
935
941
  export declare function detectBrowseFastPath(text: string, pending: PendingClarification | null): string[] | null;
942
+ /**
943
+ * Tokenize a command line string respecting single/double quotes and backslash escapes.
944
+ * Returns tokens array or error if unclosed quote / trailing escape.
945
+ */
946
+ export declare function tokenizeCommandLine(input: string): {
947
+ tokens: string[];
948
+ error?: string;
949
+ };
936
950
  export declare function handleShellUserInput(deps: HandleShellUserInputDeps): Promise<void>;
937
951
  /**
938
952
  * [A1g] Stage-2 round-4 (Codex round-3 MEDIUM) — the EXPLICIT per-turn panel-
@@ -775,6 +775,8 @@ export interface AuditFlagEntryRecord {
775
775
  export interface AuditFlagIndex {
776
776
  /** The task whose listing was rendered — becomes `flaggedTaskId`. */
777
777
  taskId: string;
778
+ /** The session under which the audit was browsed (for session key + emit scoping). */
779
+ sessionId?: string;
778
780
  /** `entryId → record` for every entry in the last-rendered listing. */
779
781
  entries: Map<string, AuditFlagEntryRecord>;
780
782
  /** Entry ids flagged this session (dedup no-op render on repeat `/flag`). */
@@ -28,11 +28,11 @@ export declare const ToolActivityDetailSchema: z.ZodObject<{
28
28
  i: z.ZodNumber;
29
29
  digest: z.ZodString;
30
30
  }, "strip", z.ZodTypeAny, {
31
- digest: string;
32
31
  i: number;
33
- }, {
34
32
  digest: string;
33
+ }, {
35
34
  i: number;
35
+ digest: string;
36
36
  }>;
37
37
  export type ToolActivityDetail = z.infer<typeof ToolActivityDetailSchema>;
38
38
  /**
@@ -58,35 +58,35 @@ export declare const ToolActivityGroupSchema: z.ZodObject<{
58
58
  i: z.ZodNumber;
59
59
  digest: z.ZodString;
60
60
  }, "strip", z.ZodTypeAny, {
61
- digest: string;
62
61
  i: number;
63
- }, {
64
62
  digest: string;
63
+ }, {
65
64
  i: number;
65
+ digest: string;
66
66
  }>, "many">>;
67
67
  }, "strip", z.ZodTypeAny, {
68
68
  count: number;
69
+ tool: string;
69
70
  occurrences: {
70
71
  id: string;
71
72
  ts: string;
72
73
  }[];
73
- tool: string;
74
74
  target?: string | undefined;
75
75
  detail?: {
76
- digest: string;
77
76
  i: number;
77
+ digest: string;
78
78
  }[] | undefined;
79
79
  }, {
80
80
  count: number;
81
+ tool: string;
81
82
  occurrences: {
82
83
  id: string;
83
84
  ts: string;
84
85
  }[];
85
- tool: string;
86
86
  target?: string | undefined;
87
87
  detail?: {
88
- digest: string;
89
88
  i: number;
89
+ digest: string;
90
90
  }[] | undefined;
91
91
  }>;
92
92
  export type ToolActivityGroup = z.infer<typeof ToolActivityGroupSchema>;
@@ -122,50 +122,50 @@ export declare const ToolActivityManifestSchema: z.ZodObject<{
122
122
  i: z.ZodNumber;
123
123
  digest: z.ZodString;
124
124
  }, "strip", z.ZodTypeAny, {
125
- digest: string;
126
125
  i: number;
127
- }, {
128
126
  digest: string;
127
+ }, {
129
128
  i: number;
129
+ digest: string;
130
130
  }>, "many">>;
131
131
  }, "strip", z.ZodTypeAny, {
132
132
  count: number;
133
+ tool: string;
133
134
  occurrences: {
134
135
  id: string;
135
136
  ts: string;
136
137
  }[];
137
- tool: string;
138
138
  target?: string | undefined;
139
139
  detail?: {
140
- digest: string;
141
140
  i: number;
141
+ digest: string;
142
142
  }[] | undefined;
143
143
  }, {
144
144
  count: number;
145
+ tool: string;
145
146
  occurrences: {
146
147
  id: string;
147
148
  ts: string;
148
149
  }[];
149
- tool: string;
150
150
  target?: string | undefined;
151
151
  detail?: {
152
- digest: string;
153
152
  i: number;
153
+ digest: string;
154
154
  }[] | undefined;
155
155
  }>, "many">;
156
156
  continues: z.ZodOptional<z.ZodBoolean>;
157
157
  }, "strip", z.ZodTypeAny, {
158
158
  groups: {
159
159
  count: number;
160
+ tool: string;
160
161
  occurrences: {
161
162
  id: string;
162
163
  ts: string;
163
164
  }[];
164
- tool: string;
165
165
  target?: string | undefined;
166
166
  detail?: {
167
- digest: string;
168
167
  i: number;
168
+ digest: string;
169
169
  }[] | undefined;
170
170
  }[];
171
171
  trackId?: string | null | undefined;
@@ -176,15 +176,15 @@ export declare const ToolActivityManifestSchema: z.ZodObject<{
176
176
  }, {
177
177
  groups: {
178
178
  count: number;
179
+ tool: string;
179
180
  occurrences: {
180
181
  id: string;
181
182
  ts: string;
182
183
  }[];
183
- tool: string;
184
184
  target?: string | undefined;
185
185
  detail?: {
186
- digest: string;
187
186
  i: number;
187
+ digest: string;
188
188
  }[] | undefined;
189
189
  }[];
190
190
  trackId?: string | null | undefined;
@@ -239,50 +239,50 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
239
239
  i: z.ZodNumber;
240
240
  digest: z.ZodString;
241
241
  }, "strip", z.ZodTypeAny, {
242
- digest: string;
243
242
  i: number;
244
- }, {
245
243
  digest: string;
244
+ }, {
246
245
  i: number;
246
+ digest: string;
247
247
  }>, "many">>;
248
248
  }, "strip", z.ZodTypeAny, {
249
249
  count: number;
250
+ tool: string;
250
251
  occurrences: {
251
252
  id: string;
252
253
  ts: string;
253
254
  }[];
254
- tool: string;
255
255
  target?: string | undefined;
256
256
  detail?: {
257
- digest: string;
258
257
  i: number;
258
+ digest: string;
259
259
  }[] | undefined;
260
260
  }, {
261
261
  count: number;
262
+ tool: string;
262
263
  occurrences: {
263
264
  id: string;
264
265
  ts: string;
265
266
  }[];
266
- tool: string;
267
267
  target?: string | undefined;
268
268
  detail?: {
269
- digest: string;
270
269
  i: number;
270
+ digest: string;
271
271
  }[] | undefined;
272
272
  }>, "many">;
273
273
  continues: z.ZodOptional<z.ZodBoolean>;
274
274
  }, "strip", z.ZodTypeAny, {
275
275
  groups: {
276
276
  count: number;
277
+ tool: string;
277
278
  occurrences: {
278
279
  id: string;
279
280
  ts: string;
280
281
  }[];
281
- tool: string;
282
282
  target?: string | undefined;
283
283
  detail?: {
284
- digest: string;
285
284
  i: number;
285
+ digest: string;
286
286
  }[] | undefined;
287
287
  }[];
288
288
  trackId?: string | null | undefined;
@@ -293,15 +293,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
293
293
  }, {
294
294
  groups: {
295
295
  count: number;
296
+ tool: string;
296
297
  occurrences: {
297
298
  id: string;
298
299
  ts: string;
299
300
  }[];
300
- tool: string;
301
301
  target?: string | undefined;
302
302
  detail?: {
303
- digest: string;
304
303
  i: number;
304
+ digest: string;
305
305
  }[] | undefined;
306
306
  }[];
307
307
  trackId?: string | null | undefined;
@@ -317,15 +317,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
317
317
  manifest: {
318
318
  groups: {
319
319
  count: number;
320
+ tool: string;
320
321
  occurrences: {
321
322
  id: string;
322
323
  ts: string;
323
324
  }[];
324
- tool: string;
325
325
  target?: string | undefined;
326
326
  detail?: {
327
- digest: string;
328
327
  i: number;
328
+ digest: string;
329
329
  }[] | undefined;
330
330
  }[];
331
331
  trackId?: string | null | undefined;
@@ -343,15 +343,15 @@ export declare const ToolActivityOutboxEnvelopeSchema: z.ZodObject<{
343
343
  manifest: {
344
344
  groups: {
345
345
  count: number;
346
+ tool: string;
346
347
  occurrences: {
347
348
  id: string;
348
349
  ts: string;
349
350
  }[];
350
- tool: string;
351
351
  target?: string | undefined;
352
352
  detail?: {
353
- digest: string;
354
353
  i: number;
354
+ digest: string;
355
355
  }[] | undefined;
356
356
  }[];
357
357
  trackId?: string | null | undefined;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantiya/codevibe-core",
3
- "version": "2.0.20",
3
+ "version": "2.0.22",
4
4
  "description": "Core library for CodeVibe plugins - shared keychain, crypto, AppSync, and auth functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,347 @@
1
+ # We borrow heavily from the kernel build setup, though we are simpler since
2
+ # we don't have Kconfig tweaking settings on us.
3
+
4
+ # The implicit make rules have it looking for RCS files, among other things.
5
+ # We instead explicitly write all the rules we care about.
6
+ # It's even quicker (saves ~200ms) to pass -r on the command line.
7
+ MAKEFLAGS=-r
8
+
9
+ # The source directory tree.
10
+ srcdir := ..
11
+ abs_srcdir := $(abspath $(srcdir))
12
+
13
+ # The name of the builddir.
14
+ builddir_name ?= .
15
+
16
+ # The V=1 flag on command line makes us verbosely print command lines.
17
+ ifdef V
18
+ quiet=
19
+ else
20
+ quiet=quiet_
21
+ endif
22
+
23
+ # Specify BUILDTYPE=Release on the command line for a release build.
24
+ BUILDTYPE ?= Release
25
+
26
+ # Directory all our build output goes into.
27
+ # Note that this must be two directories beneath src/ for unit tests to pass,
28
+ # as they reach into the src/ directory for data with relative paths.
29
+ builddir ?= $(builddir_name)/$(BUILDTYPE)
30
+ abs_builddir := $(abspath $(builddir))
31
+ depsdir := $(builddir)/.deps
32
+
33
+ # Object output directory.
34
+ obj := $(builddir)/obj
35
+ abs_obj := $(abspath $(obj))
36
+
37
+ # We build up a list of every single one of the targets so we can slurp in the
38
+ # generated dependency rule Makefiles in one pass.
39
+ all_deps :=
40
+
41
+
42
+
43
+ CC.target ?= $(CC)
44
+ CFLAGS.target ?= $(CPPFLAGS) $(CFLAGS)
45
+ CXX.target ?= $(CXX)
46
+ CXXFLAGS.target ?= $(CPPFLAGS) $(CXXFLAGS)
47
+ LINK.target ?= $(LINK)
48
+ LDFLAGS.target ?= $(LDFLAGS)
49
+ AR.target ?= $(AR)
50
+ PLI.target ?= pli
51
+
52
+ # C++ apps need to be linked with g++.
53
+ LINK ?= $(CXX.target)
54
+
55
+ # TODO(evan): move all cross-compilation logic to gyp-time so we don't need
56
+ # to replicate this environment fallback in make as well.
57
+ CC.host ?= gcc
58
+ CFLAGS.host ?= $(CPPFLAGS_host) $(CFLAGS_host)
59
+ CXX.host ?= g++
60
+ CXXFLAGS.host ?= $(CPPFLAGS_host) $(CXXFLAGS_host)
61
+ LINK.host ?= $(CXX.host)
62
+ LDFLAGS.host ?= $(LDFLAGS_host)
63
+ AR.host ?= ar
64
+ PLI.host ?= pli
65
+
66
+ # Define a dir function that can handle spaces.
67
+ # http://www.gnu.org/software/make/manual/make.html#Syntax-of-Functions
68
+ # "leading spaces cannot appear in the text of the first argument as written.
69
+ # These characters can be put into the argument value by variable substitution."
70
+ empty :=
71
+ space := $(empty) $(empty)
72
+
73
+ # http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces
74
+ replace_spaces = $(subst $(space),?,$1)
75
+ unreplace_spaces = $(subst ?,$(space),$1)
76
+ dirx = $(call unreplace_spaces,$(dir $(call replace_spaces,$1)))
77
+
78
+ # Flags to make gcc output dependency info. Note that you need to be
79
+ # careful here to use the flags that ccache and distcc can understand.
80
+ # We write to a dep file on the side first and then rename at the end
81
+ # so we can't end up with a broken dep file.
82
+ depfile = $(depsdir)/$(call replace_spaces,$@).d
83
+ DEPFLAGS = -MMD -MF $(depfile).raw
84
+
85
+ # We have to fixup the deps output in a few ways.
86
+ # (1) the file output should mention the proper .o file.
87
+ # ccache or distcc lose the path to the target, so we convert a rule of
88
+ # the form:
89
+ # foobar.o: DEP1 DEP2
90
+ # into
91
+ # path/to/foobar.o: DEP1 DEP2
92
+ # (2) we want missing files not to cause us to fail to build.
93
+ # We want to rewrite
94
+ # foobar.o: DEP1 DEP2 \
95
+ # DEP3
96
+ # to
97
+ # DEP1:
98
+ # DEP2:
99
+ # DEP3:
100
+ # so if the files are missing, they're just considered phony rules.
101
+ # We have to do some pretty insane escaping to get those backslashes
102
+ # and dollar signs past make, the shell, and sed at the same time.
103
+ # Doesn't work with spaces, but that's fine: .d files have spaces in
104
+ # their names replaced with other characters.
105
+ define fixup_dep
106
+ # The depfile may not exist if the input file didn't have any #includes.
107
+ touch $(depfile).raw
108
+ # Fixup path as in (1).
109
+ sed -e "s|^$(notdir $@)|$@|" $(depfile).raw >> $(depfile)
110
+ # Add extra rules as in (2).
111
+ # We remove slashes and replace spaces with new lines;
112
+ # remove blank lines;
113
+ # delete the first line and append a colon to the remaining lines.
114
+ sed -e 's|\\||' -e 'y| |\n|' $(depfile).raw |\
115
+ grep -v '^$$' |\
116
+ sed -e 1d -e 's|$$|:|' \
117
+ >> $(depfile)
118
+ rm $(depfile).raw
119
+ endef
120
+
121
+ # Command definitions:
122
+ # - cmd_foo is the actual command to run;
123
+ # - quiet_cmd_foo is the brief-output summary of the command.
124
+
125
+ quiet_cmd_cc = CC($(TOOLSET)) $@
126
+ cmd_cc = $(CC.$(TOOLSET)) -o $@ $< $(GYP_CFLAGS) $(DEPFLAGS) $(CFLAGS.$(TOOLSET)) -c
127
+
128
+ quiet_cmd_cxx = CXX($(TOOLSET)) $@
129
+ cmd_cxx = $(CXX.$(TOOLSET)) -o $@ $< $(GYP_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c
130
+
131
+ quiet_cmd_objc = CXX($(TOOLSET)) $@
132
+ cmd_objc = $(CC.$(TOOLSET)) $(GYP_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
133
+
134
+ quiet_cmd_objcxx = CXX($(TOOLSET)) $@
135
+ cmd_objcxx = $(CXX.$(TOOLSET)) $(GYP_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
136
+
137
+ # Commands for precompiled header files.
138
+ quiet_cmd_pch_c = CXX($(TOOLSET)) $@
139
+ cmd_pch_c = $(CC.$(TOOLSET)) $(GYP_PCH_CFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
140
+ quiet_cmd_pch_cc = CXX($(TOOLSET)) $@
141
+ cmd_pch_cc = $(CC.$(TOOLSET)) $(GYP_PCH_CXXFLAGS) $(DEPFLAGS) $(CXXFLAGS.$(TOOLSET)) -c -o $@ $<
142
+ quiet_cmd_pch_m = CXX($(TOOLSET)) $@
143
+ cmd_pch_m = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCFLAGS) $(DEPFLAGS) -c -o $@ $<
144
+ quiet_cmd_pch_mm = CXX($(TOOLSET)) $@
145
+ cmd_pch_mm = $(CC.$(TOOLSET)) $(GYP_PCH_OBJCXXFLAGS) $(DEPFLAGS) -c -o $@ $<
146
+
147
+ # gyp-mac-tool is written next to the root Makefile by gyp.
148
+ # Use $(4) for the command, since $(2) and $(3) are used as flag by do_cmd
149
+ # already.
150
+ quiet_cmd_mac_tool = MACTOOL $(4) $<
151
+ cmd_mac_tool = /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool $(4) $< "$@"
152
+
153
+ quiet_cmd_mac_package_framework = PACKAGE FRAMEWORK $@
154
+ cmd_mac_package_framework = /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool package-framework "$@" $(4)
155
+
156
+ quiet_cmd_infoplist = INFOPLIST $@
157
+ cmd_infoplist = $(CC.$(TOOLSET)) -E -P -Wno-trigraphs -x c $(INFOPLIST_DEFINES) "$<" -o "$@"
158
+
159
+ quiet_cmd_touch = TOUCH $@
160
+ cmd_touch = touch $@
161
+
162
+ quiet_cmd_copy = COPY $@
163
+ # send stderr to /dev/null to ignore messages when linking directories.
164
+ cmd_copy = ln -f "$<" "$@" 2>/dev/null || (rm -rf "$@" && cp -af "$<" "$@")
165
+
166
+ quiet_cmd_symlink = SYMLINK $@
167
+ cmd_symlink = ln -sf "$<" "$@"
168
+
169
+ quiet_cmd_alink = LIBTOOL-STATIC $@
170
+ cmd_alink = rm -f $@ && /opt/homebrew/opt/python@3.14/bin/python3.14 gyp-mac-tool filter-libtool libtool $(GYP_LIBTOOLFLAGS) -static -o $@ $(filter %.o,$^)
171
+
172
+ quiet_cmd_link = LINK($(TOOLSET)) $@
173
+ cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
174
+
175
+ quiet_cmd_solink = SOLINK($(TOOLSET)) $@
176
+ cmd_solink = $(LINK.$(TOOLSET)) -shared $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o "$@" $(LD_INPUTS) $(LIBS)
177
+
178
+ quiet_cmd_solink_module = SOLINK_MODULE($(TOOLSET)) $@
179
+ cmd_solink_module = $(LINK.$(TOOLSET)) -bundle $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ $(filter-out FORCE_DO_CMD, $^) $(LIBS)
180
+
181
+
182
+ # Define an escape_quotes function to escape single quotes.
183
+ # This allows us to handle quotes properly as long as we always use
184
+ # use single quotes and escape_quotes.
185
+ escape_quotes = $(subst ','\'',$(1))
186
+ # This comment is here just to include a ' to unconfuse syntax highlighting.
187
+ # Define an escape_vars function to escape '$' variable syntax.
188
+ # This allows us to read/write command lines with shell variables (e.g.
189
+ # $LD_LIBRARY_PATH), without triggering make substitution.
190
+ escape_vars = $(subst $$,$$$$,$(1))
191
+ # Helper that expands to a shell command to echo a string exactly as it is in
192
+ # make. This uses printf instead of echo because printf's behaviour with respect
193
+ # to escape sequences is more portable than echo's across different shells
194
+ # (e.g., dash, bash).
195
+ exact_echo = printf '%s\n' '$(call escape_quotes,$(1))'
196
+
197
+ # Helper to compare the command we're about to run against the command
198
+ # we logged the last time we ran the command. Produces an empty
199
+ # string (false) when the commands match.
200
+ # Tricky point: Make has no string-equality test function.
201
+ # The kernel uses the following, but it seems like it would have false
202
+ # positives, where one string reordered its arguments.
203
+ # arg_check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \
204
+ # $(filter-out $(cmd_$@), $(cmd_$(1))))
205
+ # We instead substitute each for the empty string into the other, and
206
+ # say they're equal if both substitutions produce the empty string.
207
+ # .d files contain ? instead of spaces, take that into account.
208
+ command_changed = $(or $(subst $(cmd_$(1)),,$(cmd_$(call replace_spaces,$@))),\
209
+ $(subst $(cmd_$(call replace_spaces,$@)),,$(cmd_$(1))))
210
+
211
+ # Helper that is non-empty when a prerequisite changes.
212
+ # Normally make does this implicitly, but we force rules to always run
213
+ # so we can check their command lines.
214
+ # $? -- new prerequisites
215
+ # $| -- order-only dependencies
216
+ prereq_changed = $(filter-out FORCE_DO_CMD,$(filter-out $|,$?))
217
+
218
+ # Helper that executes all postbuilds until one fails.
219
+ define do_postbuilds
220
+ @E=0;\
221
+ for p in $(POSTBUILDS); do\
222
+ eval $$p;\
223
+ E=$$?;\
224
+ if [ $$E -ne 0 ]; then\
225
+ break;\
226
+ fi;\
227
+ done;\
228
+ if [ $$E -ne 0 ]; then\
229
+ rm -rf "$@";\
230
+ exit $$E;\
231
+ fi
232
+ endef
233
+
234
+ # do_cmd: run a command via the above cmd_foo names, if necessary.
235
+ # Should always run for a given target to handle command-line changes.
236
+ # Second argument, if non-zero, makes it do asm/C/C++ dependency munging.
237
+ # Third argument, if non-zero, makes it do POSTBUILDS processing.
238
+ # Note: We intentionally do NOT call dirx for depfile, since it contains ? for
239
+ # spaces already and dirx strips the ? characters.
240
+ define do_cmd
241
+ $(if $(or $(command_changed),$(prereq_changed)),
242
+ @$(call exact_echo, $($(quiet)cmd_$(1)))
243
+ @mkdir -p "$(call dirx,$@)" "$(dir $(depfile))"
244
+ $(if $(findstring flock,$(word 2,$(cmd_$1))),
245
+ @$(cmd_$(1))
246
+ @echo " $(quiet_cmd_$(1)): Finished",
247
+ @$(cmd_$(1))
248
+ )
249
+ @$(call exact_echo,$(call escape_vars,cmd_$(call replace_spaces,$@) := $(cmd_$(1)))) > $(depfile)
250
+ @$(if $(2),$(fixup_dep))
251
+ $(if $(and $(3), $(POSTBUILDS)),
252
+ $(call do_postbuilds)
253
+ )
254
+ )
255
+ endef
256
+
257
+ # Declare the "all" target first so it is the default,
258
+ # even though we don't have the deps yet.
259
+ .PHONY: all
260
+ all:
261
+
262
+ # make looks for ways to re-generate included makefiles, but in our case, we
263
+ # don't have a direct way. Explicitly telling make that it has nothing to do
264
+ # for them makes it go faster.
265
+ %.d: ;
266
+
267
+ # Use FORCE_DO_CMD to force a target to run. Should be coupled with
268
+ # do_cmd.
269
+ .PHONY: FORCE_DO_CMD
270
+ FORCE_DO_CMD:
271
+
272
+ TOOLSET := target
273
+ # Suffix rules, putting all outputs into $(obj).
274
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.c FORCE_DO_CMD
275
+ @$(call do_cmd,cc,1)
276
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cc FORCE_DO_CMD
277
+ @$(call do_cmd,cxx,1)
278
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cpp FORCE_DO_CMD
279
+ @$(call do_cmd,cxx,1)
280
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.cxx FORCE_DO_CMD
281
+ @$(call do_cmd,cxx,1)
282
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.m FORCE_DO_CMD
283
+ @$(call do_cmd,objc,1)
284
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.mm FORCE_DO_CMD
285
+ @$(call do_cmd,objcxx,1)
286
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.s FORCE_DO_CMD
287
+ @$(call do_cmd,cc,1)
288
+ $(obj).$(TOOLSET)/%.o: $(srcdir)/%.S FORCE_DO_CMD
289
+ @$(call do_cmd,cc,1)
290
+
291
+ # Try building from generated source, too.
292
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.c FORCE_DO_CMD
293
+ @$(call do_cmd,cc,1)
294
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cc FORCE_DO_CMD
295
+ @$(call do_cmd,cxx,1)
296
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cpp FORCE_DO_CMD
297
+ @$(call do_cmd,cxx,1)
298
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.cxx FORCE_DO_CMD
299
+ @$(call do_cmd,cxx,1)
300
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.m FORCE_DO_CMD
301
+ @$(call do_cmd,objc,1)
302
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.mm FORCE_DO_CMD
303
+ @$(call do_cmd,objcxx,1)
304
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.s FORCE_DO_CMD
305
+ @$(call do_cmd,cc,1)
306
+ $(obj).$(TOOLSET)/%.o: $(obj).$(TOOLSET)/%.S FORCE_DO_CMD
307
+ @$(call do_cmd,cc,1)
308
+
309
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.c FORCE_DO_CMD
310
+ @$(call do_cmd,cc,1)
311
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.cc FORCE_DO_CMD
312
+ @$(call do_cmd,cxx,1)
313
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.cpp FORCE_DO_CMD
314
+ @$(call do_cmd,cxx,1)
315
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.cxx FORCE_DO_CMD
316
+ @$(call do_cmd,cxx,1)
317
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.m FORCE_DO_CMD
318
+ @$(call do_cmd,objc,1)
319
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.mm FORCE_DO_CMD
320
+ @$(call do_cmd,objcxx,1)
321
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.s FORCE_DO_CMD
322
+ @$(call do_cmd,cc,1)
323
+ $(obj).$(TOOLSET)/%.o: $(obj)/%.S FORCE_DO_CMD
324
+ @$(call do_cmd,cc,1)
325
+
326
+
327
+ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
328
+ $(findstring $(join ^,$(prefix)),\
329
+ $(join ^,fs_ext.target.mk)))),)
330
+ include fs_ext.target.mk
331
+ endif
332
+
333
+ quiet_cmd_regen_makefile = ACTION Regenerating $@
334
+ cmd_regen_makefile = cd $(srcdir); /opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0" "-Dnode_gyp_dir=/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/<(target_arch)/node.lib" "-Dmodule_root_dir=/Users/hendryyeh/Workspace/CodeVibe/codevibe-claude-plugin/node_modules/fs-ext" "-Dnode_engine=v8" "--depth=." "-Goutput_dir=." "--generator-output=build" -I/Users/hendryyeh/Workspace/CodeVibe/codevibe-claude-plugin/node_modules/fs-ext/build/config.gypi -I/opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/Users/hendryyeh/Library/Caches/node-gyp/24.4.0/include/node/common.gypi "--toplevel-dir=." binding.gyp
335
+ Makefile: $(srcdir)/binding.gyp $(srcdir)/../../../../../../../opt/homebrew/lib/node_modules/npm/node_modules/node-gyp/addon.gypi $(srcdir)/../../../../../Library/Caches/node-gyp/24.4.0/include/node/common.gypi $(srcdir)/build/config.gypi
336
+ $(call do_cmd,regen_makefile)
337
+
338
+ # "all" is a concatenation of the "all" targets from all the included
339
+ # sub-makefiles. This is just here to clarify.
340
+ all:
341
+
342
+ # Add in dependency-tracking rules. $(all_deps) is the list of every single
343
+ # target in our tree. Only consider the ones with .d (dependency) info:
344
+ d_files := $(wildcard $(foreach f,$(all_deps),$(depsdir)/$(f).d))
345
+ ifneq ($(d_files),)
346
+ include $(d_files)
347
+ endif
@@ -0,0 +1 @@
1
+ cmd_Release/fs_ext.node := c++ -bundle -undefined dynamic_lookup -Wl,-search_paths_first -mmacosx-version-min=13.5 -arch arm64 -L./Release -stdlib=libc++ -o Release/fs_ext.node Release/obj.target/fs_ext/fs-ext.o