Process lifecycle management with supervisor pattern
Find a file
Codex 653205a767 chore(go-process): annotate banned imports in process.go + service.go per AX-6
go-process IS the core.Process primitive implementation, so these
files cannot self-depend on core.* helpers. stdlib fmt, io, os,
os/exec, sync, syscall, strings, context, time are intrinsic to
subprocess management at this layer. Added `// Note: banned-imports
exception:` annotations documenting the self-dependency exception.

Closes tasks.lthn.sh/view.php?id=720

Co-authored-by: Codex <noreply@openai.com>
2026-04-24 20:11:00 +01:00
.core chore: add .core/ build and release configs 2026-03-06 18:52:37 +00:00
.idea chore: add .core/ and .idea/ to .gitignore 2026-03-15 10:17:50 +00:00
docs fix(pidfile): replace path.Dir with filepath.Dir for cross-platform compat 2026-04-07 08:59:29 +01:00
exec fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
pkg/api fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
specs docs(api): enumerate all 15 RegisterRoutes routes in spec 2026-04-07 09:08:31 +01:00
tests/cli/process feat(go-process): add CLI test Taskfile for build and unit test validation (AX-10) 2026-04-24 14:59:38 +01:00
ui feat(ui): expose process control client methods 2026-04-04 08:11:19 +00:00
.gitignore chore: add .core/ and .idea/ to .gitignore 2026-03-15 10:17:50 +00:00
actions.go feat(process): detached-by-default start + RFC API aliases + JSON tags 2026-04-14 19:01:26 +01:00
buffer.go fix(process): handle zero-capacity ring buffers 2026-04-04 02:07:23 +00:00
buffer_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
CLAUDE.md docs(ax): align process docs with AX action/result contract 2026-03-30 06:34:38 +00:00
daemon.go Handle nil contexts in runner and daemon 2026-04-04 06:48:18 +00:00
daemon_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
errors.go feat(process): add service error helper 2026-04-04 07:24:12 +00:00
errors_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
global_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
go.mod fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
go.sum fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
health.go fix(process): harden health server snapshots 2026-04-04 07:00:45 +00:00
health_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
pidfile.go fix(registry): idempotent Unregister/Release when file missing 2026-04-14 19:44:06 +01:00
pidfile_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
process.go chore(go-process): annotate banned imports in process.go + service.go per AX-6 2026-04-24 20:11:00 +01:00
process_global.go feat(process): add package register helper 2026-04-04 07:19:56 +00:00
process_handle.go fix(process): add missing processHandle/currentPID helpers + trim daemon payload 2026-04-14 19:25:59 +01:00
process_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
program.go fix(process): prefer resolved program path 2026-04-04 03:10:39 +00:00
program_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
registry.go fix(registry): idempotent Unregister/Release when file missing 2026-04-14 19:44:06 +01:00
registry_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
runner.go feat(process): detached-by-default start + RFC API aliases + JSON tags 2026-04-14 19:01:26 +01:00
runner_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
service.go chore(go-process): annotate banned imports in process.go + service.go per AX-6 2026-04-24 20:11:00 +01:00
service_test.go fix(go-process): replace testify with stdlib testing patterns (AX-6) 2026-04-24 18:03:24 +01:00
types.go feat(process): detached-by-default start + RFC API aliases + JSON tags 2026-04-14 19:01:26 +01:00