@fulmenhq/tsfulmen 0.2.8 → 0.2.10
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/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/config/crucible-ts/agentic/roles/devlead.yaml +21 -3
- package/config/crucible-ts/agentic/roles/devrev.yaml +15 -1
- package/config/crucible-ts/agentic/roles/qa.yaml +11 -2
- package/config/crucible-ts/devsecops/lorage-central/activity/v1.0.0/defaults.yaml +2 -2
- package/config/crucible-ts/devsecops/lorage-central/credentials/v1.0.0/defaults.yaml +4 -4
- package/config/crucible-ts/devsecops/lorage-central/policy/v1.0.0/defaults.yaml +13 -13
- package/config/crucible-ts/devsecops/lorage-central/recipe/v1.0.0/defaults.yaml +13 -13
- package/config/crucible-ts/devsecops/lorage-central/runbooks/v1.0.0/defaults.yaml +8 -8
- package/config/crucible-ts/devsecops/lorage-central/tenant/v1.0.0/defaults.yaml +9 -9
- package/config/crucible-ts/devsecops/secrets/v1.0.0/defaults.yaml +5 -5
- package/config/crucible-ts/library/foundry/fixtures/signals/valid/complete.yaml +32 -32
- package/config/crucible-ts/library/foundry/signals.yaml +34 -34
- package/config/crucible-ts/server/management/server-management.yaml +3 -3
- package/config/crucible-ts/taxonomy/fixture-catalog.yaml +1 -1
- package/config/crucible-ts/taxonomy/metrics.yaml +1 -1
- package/config/crucible-ts/web/styling/site-styling.yaml +16 -16
- package/dist/appidentity/index.js.map +1 -1
- package/dist/config/index.js.map +1 -1
- package/dist/crucible/index.js.map +1 -1
- package/dist/errors/index.js.map +1 -1
- package/dist/foundry/index.js.map +1 -1
- package/dist/fulencode/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/pathfinder/index.js +0 -1
- package/dist/pathfinder/index.js.map +1 -1
- package/dist/reports/license-inventory.csv +49 -38
- package/dist/schema/index.js.map +1 -1
- package/dist/signals/index.js.map +1 -1
- package/dist/telemetry/http/index.js.map +1 -1
- package/dist/telemetry/index.js.map +1 -1
- package/dist/telemetry/prometheus/index.js.map +1 -1
- package/package.json +16 -16
- package/schemas/crucible-ts/taxonomy/library/fulencode/detection-confidence/v1.0.0/levels.yaml +1 -1
- package/schemas/crucible-ts/taxonomy/library/fulpack/archive-formats/v1.0.0/formats.yaml +1 -1
|
@@ -8,7 +8,7 @@ signals:
|
|
|
8
8
|
windows_event: CTRL_CLOSE_EVENT
|
|
9
9
|
description: Graceful termination signal
|
|
10
10
|
default_behavior: graceful_shutdown
|
|
11
|
-
exit_code: 143
|
|
11
|
+
exit_code: 143 # 128 + 15
|
|
12
12
|
timeout_seconds: 30
|
|
13
13
|
cleanup_actions:
|
|
14
14
|
- close_connections
|
|
@@ -22,7 +22,7 @@ signals:
|
|
|
22
22
|
windows_event: CTRL_C_EVENT
|
|
23
23
|
description: User interrupt (Ctrl+C)
|
|
24
24
|
default_behavior: graceful_shutdown_with_double_tap
|
|
25
|
-
exit_code: 130
|
|
25
|
+
exit_code: 130 # 128 + 2
|
|
26
26
|
timeout_seconds: 5
|
|
27
27
|
double_tap_window_seconds: 2
|
|
28
28
|
double_tap_message: "Press Ctrl+C again within 2s to force quit"
|
|
@@ -40,7 +40,7 @@ signals:
|
|
|
40
40
|
windows_event: null
|
|
41
41
|
description: Hangup signal (config reload via restart)
|
|
42
42
|
default_behavior: reload_via_restart
|
|
43
|
-
exit_code: 129
|
|
43
|
+
exit_code: 129 # 128 + 1
|
|
44
44
|
reload_strategy: restart_based
|
|
45
45
|
validation_required: true
|
|
46
46
|
timeout_seconds: 30
|
|
@@ -64,7 +64,7 @@ signals:
|
|
|
64
64
|
windows_event: CTRL_BREAK_EVENT
|
|
65
65
|
description: Quit with core dump (immediate termination)
|
|
66
66
|
default_behavior: immediate_exit
|
|
67
|
-
exit_code: 131
|
|
67
|
+
exit_code: 131 # 128 + 3
|
|
68
68
|
timeout_seconds: 0
|
|
69
69
|
usage_notes: Immediate termination signal (Ctrl+\\ on Unix, Ctrl+Break on Windows). Does not perform cleanup. Use for emergency shutdown or debugging (core dumps).
|
|
70
70
|
- id: pipe
|
|
@@ -73,7 +73,7 @@ signals:
|
|
|
73
73
|
windows_event: null
|
|
74
74
|
description: Broken pipe (write to closed socket/pipe)
|
|
75
75
|
default_behavior: observe_only
|
|
76
|
-
exit_code: 141
|
|
76
|
+
exit_code: 141 # 128 + 13
|
|
77
77
|
usage_notes: Default POSIX behavior terminates process immediately. Fulmen default is observe_only (log at INFO level + exit gracefully with code 141). Applications may override to ignore SIGPIPE for network services that expect broken pipes. Long-running servers typically ignore; CLI tools typically exit.
|
|
78
78
|
windows_fallback:
|
|
79
79
|
log_level: WARN
|
|
@@ -88,7 +88,7 @@ signals:
|
|
|
88
88
|
windows_event: null
|
|
89
89
|
description: Alarm timer expired (watchdog timeout)
|
|
90
90
|
default_behavior: immediate_exit
|
|
91
|
-
exit_code: 142
|
|
91
|
+
exit_code: 142 # 128 + 14
|
|
92
92
|
timeout_seconds: 0
|
|
93
93
|
usage_notes: Used by watchdog timers. Treat as timeout-induced exit unless application overrides. Watchdog pattern - call signal.alarm(N) to set timer, reset periodically with progress; if no reset within N seconds, SIGALRM fires and process exits. Out of scope for v1.0.0 module implementations.
|
|
94
94
|
windows_fallback:
|
|
@@ -107,7 +107,7 @@ signals:
|
|
|
107
107
|
windows_event: null
|
|
108
108
|
description: User-defined signal 1
|
|
109
109
|
default_behavior: custom
|
|
110
|
-
exit_code: 138
|
|
110
|
+
exit_code: 138 # 128 + 10
|
|
111
111
|
usage_notes: Application-specific signal (e.g., reopen log files, dump statistics, toggle verbose logging). Helper libraries provide registration API; application provides custom handler.
|
|
112
112
|
windows_fallback:
|
|
113
113
|
log_level: WARN
|
|
@@ -126,7 +126,7 @@ signals:
|
|
|
126
126
|
windows_event: null
|
|
127
127
|
description: User-defined signal 2
|
|
128
128
|
default_behavior: custom
|
|
129
|
-
exit_code: 140
|
|
129
|
+
exit_code: 140 # 128 + 12
|
|
130
130
|
usage_notes: Application-specific signal (e.g., toggle debug mode, trigger profiling, rotate credentials). Helper libraries provide registration API; application provides custom handler.
|
|
131
131
|
windows_fallback:
|
|
132
132
|
log_level: WARN
|
|
@@ -219,9 +219,9 @@ os_mappings:
|
|
|
219
219
|
SIGQUIT: 3
|
|
220
220
|
SIGPIPE: 13
|
|
221
221
|
SIGALRM: 14
|
|
222
|
-
SIGUSR1: 10
|
|
223
|
-
SIGUSR2: 12
|
|
224
|
-
SIGKILL: 9
|
|
222
|
+
SIGUSR1: 10 # Linux standard
|
|
223
|
+
SIGUSR2: 12 # Linux standard
|
|
224
|
+
SIGKILL: 9 # Not catchable, documented for completeness
|
|
225
225
|
windows:
|
|
226
226
|
CTRL_C_EVENT: 0
|
|
227
227
|
CTRL_BREAK_EVENT: 1
|
|
@@ -230,7 +230,7 @@ os_mappings:
|
|
|
230
230
|
CTRL_SHUTDOWN_EVENT: 6
|
|
231
231
|
# Platform-specific signal number overrides
|
|
232
232
|
platform_overrides:
|
|
233
|
-
darwin:
|
|
233
|
+
darwin: # macOS
|
|
234
234
|
SIGUSR1: 30
|
|
235
235
|
SIGUSR2: 31
|
|
236
236
|
freebsd:
|
|
@@ -241,24 +241,24 @@ os_mappings:
|
|
|
241
241
|
SIGTERM: CTRL_CLOSE_EVENT
|
|
242
242
|
SIGINT: CTRL_C_EVENT
|
|
243
243
|
SIGQUIT: CTRL_BREAK_EVENT
|
|
244
|
-
SIGHUP: null
|
|
245
|
-
SIGPIPE: null
|
|
246
|
-
SIGALRM: null
|
|
247
|
-
SIGUSR1: null
|
|
248
|
-
SIGUSR2: null
|
|
244
|
+
SIGHUP: null # No Windows equivalent - use HTTP fallback
|
|
245
|
+
SIGPIPE: null # No Windows equivalent - handled via exceptions
|
|
246
|
+
SIGALRM: null # No Windows equivalent - use timers
|
|
247
|
+
SIGUSR1: null # No Windows equivalent - use HTTP fallback
|
|
248
|
+
SIGUSR2: null # No Windows equivalent - use HTTP fallback
|
|
249
249
|
# Platform support matrix for helper library implementations
|
|
250
250
|
platform_support:
|
|
251
251
|
- signal: SIGTERM
|
|
252
252
|
linux: native
|
|
253
253
|
macos: native
|
|
254
254
|
freebsd: native
|
|
255
|
-
windows: mapped
|
|
255
|
+
windows: mapped # CTRL_CLOSE_EVENT
|
|
256
256
|
notes: Fully supported across all platforms
|
|
257
257
|
- signal: SIGINT
|
|
258
258
|
linux: native
|
|
259
259
|
macos: native
|
|
260
260
|
freebsd: native
|
|
261
|
-
windows: mapped
|
|
261
|
+
windows: mapped # CTRL_C_EVENT
|
|
262
262
|
notes: Fully supported across all platforms
|
|
263
263
|
- signal: SIGHUP
|
|
264
264
|
linux: native
|
|
@@ -271,7 +271,7 @@ platform_support:
|
|
|
271
271
|
linux: native
|
|
272
272
|
macos: native
|
|
273
273
|
freebsd: native
|
|
274
|
-
windows: mapped
|
|
274
|
+
windows: mapped # CTRL_BREAK_EVENT
|
|
275
275
|
notes: Fully supported across all platforms
|
|
276
276
|
- signal: SIGPIPE
|
|
277
277
|
linux: native
|
|
@@ -289,26 +289,26 @@ platform_support:
|
|
|
289
289
|
notes: On Windows, use threading.Timer (Python) or setTimeout (TypeScript)
|
|
290
290
|
- signal: SIGUSR1
|
|
291
291
|
linux: native
|
|
292
|
-
macos: native
|
|
293
|
-
freebsd: native
|
|
292
|
+
macos: native # signal 30
|
|
293
|
+
freebsd: native # signal 30
|
|
294
294
|
windows: unsupported
|
|
295
295
|
fallback: http_admin_endpoint
|
|
296
296
|
notes: Signal number varies by platform. On Windows, use HTTP POST /admin/signal with signal=USR1
|
|
297
297
|
- signal: SIGUSR2
|
|
298
298
|
linux: native
|
|
299
|
-
macos: native
|
|
300
|
-
freebsd: native
|
|
299
|
+
macos: native # signal 31
|
|
300
|
+
freebsd: native # signal 31
|
|
301
301
|
windows: unsupported
|
|
302
302
|
fallback: http_admin_endpoint
|
|
303
303
|
notes: Signal number varies by platform. On Windows, use HTTP POST /admin/signal with signal=USR2
|
|
304
304
|
# Exit code mappings (128+N pattern per POSIX)
|
|
305
305
|
exit_codes:
|
|
306
|
-
SIGTERM: 143
|
|
307
|
-
SIGINT: 130
|
|
308
|
-
SIGHUP: 129
|
|
309
|
-
SIGQUIT: 131
|
|
310
|
-
SIGPIPE: 141
|
|
311
|
-
SIGALRM: 142
|
|
312
|
-
SIGUSR1: 138
|
|
313
|
-
SIGUSR2: 140
|
|
306
|
+
SIGTERM: 143 # 128 + 15
|
|
307
|
+
SIGINT: 130 # 128 + 2
|
|
308
|
+
SIGHUP: 129 # 128 + 1
|
|
309
|
+
SIGQUIT: 131 # 128 + 3
|
|
310
|
+
SIGPIPE: 141 # 128 + 13
|
|
311
|
+
SIGALRM: 142 # 128 + 14
|
|
312
|
+
SIGUSR1: 138 # 128 + 10
|
|
313
|
+
SIGUSR2: 140 # 128 + 12
|
|
314
314
|
note: Exit codes follow POSIX 128+N pattern where N is the signal number. These codes are cross-referenced in config/library/foundry/exit-codes.yaml.
|
|
@@ -8,7 +8,7 @@ signals:
|
|
|
8
8
|
windows_event: CTRL_CLOSE_EVENT
|
|
9
9
|
description: Graceful termination signal
|
|
10
10
|
default_behavior: graceful_shutdown
|
|
11
|
-
exit_code: 143
|
|
11
|
+
exit_code: 143 # 128 + 15
|
|
12
12
|
timeout_seconds: 30
|
|
13
13
|
cleanup_actions:
|
|
14
14
|
- close_connections
|
|
@@ -22,7 +22,7 @@ signals:
|
|
|
22
22
|
windows_event: CTRL_C_EVENT
|
|
23
23
|
description: User interrupt (Ctrl+C)
|
|
24
24
|
default_behavior: graceful_shutdown_with_double_tap
|
|
25
|
-
exit_code: 130
|
|
25
|
+
exit_code: 130 # 128 + 2
|
|
26
26
|
timeout_seconds: 5
|
|
27
27
|
double_tap_window_seconds: 2
|
|
28
28
|
double_tap_message: "Press Ctrl+C again within 2s to force quit"
|
|
@@ -40,7 +40,7 @@ signals:
|
|
|
40
40
|
windows_event: null
|
|
41
41
|
description: Hangup signal (config reload via restart)
|
|
42
42
|
default_behavior: reload_via_restart
|
|
43
|
-
exit_code: 129
|
|
43
|
+
exit_code: 129 # 128 + 1
|
|
44
44
|
reload_strategy: restart_based
|
|
45
45
|
validation_required: true
|
|
46
46
|
timeout_seconds: 30
|
|
@@ -67,7 +67,7 @@ signals:
|
|
|
67
67
|
windows_event: CTRL_BREAK_EVENT
|
|
68
68
|
description: Quit with core dump (immediate termination)
|
|
69
69
|
default_behavior: immediate_exit
|
|
70
|
-
exit_code: 131
|
|
70
|
+
exit_code: 131 # 128 + 3
|
|
71
71
|
timeout_seconds: 0
|
|
72
72
|
usage_notes: Immediate termination signal (Ctrl+\\ on Unix, Ctrl+Break on Windows). Does not perform cleanup. Use for emergency shutdown or debugging (core dumps).
|
|
73
73
|
- id: pipe
|
|
@@ -76,7 +76,7 @@ signals:
|
|
|
76
76
|
windows_event: null
|
|
77
77
|
description: Broken pipe (write to closed socket/pipe)
|
|
78
78
|
default_behavior: observe_only
|
|
79
|
-
exit_code: 141
|
|
79
|
+
exit_code: 141 # 128 + 13
|
|
80
80
|
usage_notes: Default POSIX behavior terminates process immediately. Fulmen default is observe_only (log at INFO level + exit gracefully with code 141). Applications may override to ignore SIGPIPE for network services that expect broken pipes. Long-running servers typically ignore; CLI tools typically exit.
|
|
81
81
|
windows_fallback:
|
|
82
82
|
fallback_behavior: exception_handling
|
|
@@ -95,7 +95,7 @@ signals:
|
|
|
95
95
|
windows_event: null
|
|
96
96
|
description: Alarm timer expired (watchdog timeout)
|
|
97
97
|
default_behavior: immediate_exit
|
|
98
|
-
exit_code: 142
|
|
98
|
+
exit_code: 142 # 128 + 14
|
|
99
99
|
timeout_seconds: 0
|
|
100
100
|
usage_notes: Used by watchdog timers. Treat as timeout-induced exit unless application overrides. Watchdog pattern - call signal.alarm(N) to set timer, reset periodically with progress; if no reset within N seconds, SIGALRM fires and process exits. Out of scope for v1.0.0 module implementations.
|
|
101
101
|
windows_fallback:
|
|
@@ -118,7 +118,7 @@ signals:
|
|
|
118
118
|
windows_event: null
|
|
119
119
|
description: User-defined signal 1
|
|
120
120
|
default_behavior: custom
|
|
121
|
-
exit_code: 138
|
|
121
|
+
exit_code: 138 # 128 + 10
|
|
122
122
|
usage_notes: Application-specific signal (e.g., reopen log files, dump statistics, toggle verbose logging). Helper libraries provide registration API; application provides custom handler.
|
|
123
123
|
windows_fallback:
|
|
124
124
|
fallback_behavior: http_admin_endpoint
|
|
@@ -140,7 +140,7 @@ signals:
|
|
|
140
140
|
windows_event: null
|
|
141
141
|
description: User-defined signal 2
|
|
142
142
|
default_behavior: custom
|
|
143
|
-
exit_code: 140
|
|
143
|
+
exit_code: 140 # 128 + 12
|
|
144
144
|
usage_notes: Application-specific signal (e.g., toggle debug mode, trigger profiling, rotate credentials). Helper libraries provide registration API; application provides custom handler.
|
|
145
145
|
windows_fallback:
|
|
146
146
|
fallback_behavior: http_admin_endpoint
|
|
@@ -159,7 +159,7 @@ signals:
|
|
|
159
159
|
windows_event: null
|
|
160
160
|
description: Force immediate termination - cannot be caught, blocked, or ignored
|
|
161
161
|
default_behavior: immediate_exit
|
|
162
|
-
exit_code: 137
|
|
162
|
+
exit_code: 137 # 128 + 9
|
|
163
163
|
timeout_seconds: 0
|
|
164
164
|
cleanup_actions: []
|
|
165
165
|
usage_notes: |
|
|
@@ -250,9 +250,9 @@ os_mappings:
|
|
|
250
250
|
SIGQUIT: 3
|
|
251
251
|
SIGPIPE: 13
|
|
252
252
|
SIGALRM: 14
|
|
253
|
-
SIGUSR1: 10
|
|
254
|
-
SIGUSR2: 12
|
|
255
|
-
SIGKILL: 9
|
|
253
|
+
SIGUSR1: 10 # Linux standard
|
|
254
|
+
SIGUSR2: 12 # Linux standard
|
|
255
|
+
SIGKILL: 9 # Not catchable, documented for completeness
|
|
256
256
|
windows:
|
|
257
257
|
CTRL_C_EVENT: 0
|
|
258
258
|
CTRL_BREAK_EVENT: 1
|
|
@@ -261,7 +261,7 @@ os_mappings:
|
|
|
261
261
|
CTRL_SHUTDOWN_EVENT: 6
|
|
262
262
|
# Platform-specific signal number overrides
|
|
263
263
|
platform_overrides:
|
|
264
|
-
darwin:
|
|
264
|
+
darwin: # macOS
|
|
265
265
|
SIGUSR1: 30
|
|
266
266
|
SIGUSR2: 31
|
|
267
267
|
freebsd:
|
|
@@ -272,24 +272,24 @@ os_mappings:
|
|
|
272
272
|
SIGTERM: CTRL_CLOSE_EVENT
|
|
273
273
|
SIGINT: CTRL_C_EVENT
|
|
274
274
|
SIGQUIT: CTRL_BREAK_EVENT
|
|
275
|
-
SIGHUP: null
|
|
276
|
-
SIGPIPE: null
|
|
277
|
-
SIGALRM: null
|
|
278
|
-
SIGUSR1: null
|
|
279
|
-
SIGUSR2: null
|
|
275
|
+
SIGHUP: null # No Windows equivalent - use HTTP fallback
|
|
276
|
+
SIGPIPE: null # No Windows equivalent - handled via exceptions
|
|
277
|
+
SIGALRM: null # No Windows equivalent - use timers
|
|
278
|
+
SIGUSR1: null # No Windows equivalent - use HTTP fallback
|
|
279
|
+
SIGUSR2: null # No Windows equivalent - use HTTP fallback
|
|
280
280
|
# Platform support matrix for helper library implementations
|
|
281
281
|
platform_support:
|
|
282
282
|
- signal: SIGTERM
|
|
283
283
|
linux: native
|
|
284
284
|
macos: native
|
|
285
285
|
freebsd: native
|
|
286
|
-
windows: mapped
|
|
286
|
+
windows: mapped # CTRL_CLOSE_EVENT
|
|
287
287
|
notes: Fully supported across all platforms
|
|
288
288
|
- signal: SIGINT
|
|
289
289
|
linux: native
|
|
290
290
|
macos: native
|
|
291
291
|
freebsd: native
|
|
292
|
-
windows: mapped
|
|
292
|
+
windows: mapped # CTRL_C_EVENT
|
|
293
293
|
notes: Fully supported across all platforms
|
|
294
294
|
- signal: SIGHUP
|
|
295
295
|
linux: native
|
|
@@ -302,7 +302,7 @@ platform_support:
|
|
|
302
302
|
linux: native
|
|
303
303
|
macos: native
|
|
304
304
|
freebsd: native
|
|
305
|
-
windows: mapped
|
|
305
|
+
windows: mapped # CTRL_BREAK_EVENT
|
|
306
306
|
notes: Fully supported across all platforms
|
|
307
307
|
- signal: SIGPIPE
|
|
308
308
|
linux: native
|
|
@@ -320,15 +320,15 @@ platform_support:
|
|
|
320
320
|
notes: On Windows, use threading.Timer (Python) or setTimeout (TypeScript)
|
|
321
321
|
- signal: SIGUSR1
|
|
322
322
|
linux: native
|
|
323
|
-
macos: native
|
|
324
|
-
freebsd: native
|
|
323
|
+
macos: native # signal 30
|
|
324
|
+
freebsd: native # signal 30
|
|
325
325
|
windows: unsupported
|
|
326
326
|
fallback: http_admin_endpoint
|
|
327
327
|
notes: Signal number varies by platform. On Windows, use HTTP POST /admin/signal with signal=USR1
|
|
328
328
|
- signal: SIGUSR2
|
|
329
329
|
linux: native
|
|
330
|
-
macos: native
|
|
331
|
-
freebsd: native
|
|
330
|
+
macos: native # signal 31
|
|
331
|
+
freebsd: native # signal 31
|
|
332
332
|
windows: unsupported
|
|
333
333
|
fallback: http_admin_endpoint
|
|
334
334
|
notes: Signal number varies by platform. On Windows, use HTTP POST /admin/signal with signal=USR2
|
|
@@ -340,13 +340,13 @@ platform_support:
|
|
|
340
340
|
notes: Cannot be caught or ignored. Windows uses TerminateProcess/TerminateJobObject.
|
|
341
341
|
# Exit code mappings (128+N pattern per POSIX)
|
|
342
342
|
exit_codes:
|
|
343
|
-
SIGTERM: 143
|
|
344
|
-
SIGINT: 130
|
|
345
|
-
SIGHUP: 129
|
|
346
|
-
SIGQUIT: 131
|
|
347
|
-
SIGKILL: 137
|
|
348
|
-
SIGPIPE: 141
|
|
349
|
-
SIGALRM: 142
|
|
350
|
-
SIGUSR1: 138
|
|
351
|
-
SIGUSR2: 140
|
|
343
|
+
SIGTERM: 143 # 128 + 15
|
|
344
|
+
SIGINT: 130 # 128 + 2
|
|
345
|
+
SIGHUP: 129 # 128 + 1
|
|
346
|
+
SIGQUIT: 131 # 128 + 3
|
|
347
|
+
SIGKILL: 137 # 128 + 9
|
|
348
|
+
SIGPIPE: 141 # 128 + 13
|
|
349
|
+
SIGALRM: 142 # 128 + 14
|
|
350
|
+
SIGUSR1: 138 # 128 + 10
|
|
351
|
+
SIGUSR2: 140 # 128 + 12
|
|
352
352
|
note: Exit codes follow POSIX 128+N pattern where N is the signal number. These codes are cross-referenced in config/library/foundry/exit-codes.yaml.
|
|
@@ -20,9 +20,9 @@ configurations:
|
|
|
20
20
|
retries: 3
|
|
21
21
|
interval: 1000
|
|
22
22
|
exitBehavior:
|
|
23
|
-
portInUse: 11
|
|
24
|
-
healthCheckFailed: 50
|
|
25
|
-
startupTimeout: 52
|
|
23
|
+
portInUse: 11 # EXIT_PORT_IN_USE
|
|
24
|
+
healthCheckFailed: 50 # EXIT_HEALTH_CHECK_FAILED
|
|
25
|
+
startupTimeout: 52 # EXIT_TIMEOUT
|
|
26
26
|
envOverrides:
|
|
27
27
|
- FULMEN_APP_DEV_PORT
|
|
28
28
|
- FULMEN_APP_DEV_RANGE_MIN
|
|
@@ -34,7 +34,7 @@ fixtures:
|
|
|
34
34
|
ja: "混合認証要件を持つ保護されたバックエンド"
|
|
35
35
|
de: "Geschütztes Backend mit gemischten Auth-Anforderungen"
|
|
36
36
|
aliases:
|
|
37
|
-
- "gantlet"
|
|
37
|
+
- "gantlet" # Common misspelling
|
|
38
38
|
scenarios:
|
|
39
39
|
- name: "oauth-minimal"
|
|
40
40
|
description: "OAuth2 with basic scopes, no refresh tokens"
|
|
@@ -18,14 +18,14 @@ themes:
|
|
|
18
18
|
caution: "#fb923c"
|
|
19
19
|
# Optional categorical palette for charts/data viz (accessible sequence)
|
|
20
20
|
categorical:
|
|
21
|
-
- "#3b82f6"
|
|
22
|
-
- "#10b981"
|
|
23
|
-
- "#f59e0b"
|
|
24
|
-
- "#8b5cf6"
|
|
25
|
-
- "#ef4444"
|
|
26
|
-
- "#14b8a6"
|
|
27
|
-
- "#f97316"
|
|
28
|
-
- "#6366f1"
|
|
21
|
+
- "#3b82f6" # Blue
|
|
22
|
+
- "#10b981" # Green
|
|
23
|
+
- "#f59e0b" # Orange
|
|
24
|
+
- "#8b5cf6" # Purple
|
|
25
|
+
- "#ef4444" # Red
|
|
26
|
+
- "#14b8a6" # Teal
|
|
27
|
+
- "#f97316" # Deep Orange
|
|
28
|
+
- "#6366f1" # Indigo
|
|
29
29
|
dark:
|
|
30
30
|
background: "#111827"
|
|
31
31
|
foreground: "#f9fafb"
|
|
@@ -40,14 +40,14 @@ themes:
|
|
|
40
40
|
caution: "#fdba74"
|
|
41
41
|
# Optional categorical palette for charts/data viz (accessible sequence)
|
|
42
42
|
categorical:
|
|
43
|
-
- "#60a5fa"
|
|
44
|
-
- "#34d399"
|
|
45
|
-
- "#fbbf24"
|
|
46
|
-
- "#a78bfa"
|
|
47
|
-
- "#f87171"
|
|
48
|
-
- "#2dd4bf"
|
|
49
|
-
- "#fb923c"
|
|
50
|
-
- "#818cf8"
|
|
43
|
+
- "#60a5fa" # Blue
|
|
44
|
+
- "#34d399" # Green
|
|
45
|
+
- "#fbbf24" # Orange
|
|
46
|
+
- "#a78bfa" # Purple
|
|
47
|
+
- "#f87171" # Red
|
|
48
|
+
- "#2dd4bf" # Teal
|
|
49
|
+
- "#fb923c" # Deep Orange
|
|
50
|
+
- "#818cf8" # Indigo
|
|
51
51
|
typography:
|
|
52
52
|
fonts:
|
|
53
53
|
body:
|