feat(omo-codex): sync shared skills into plugin

This commit is contained in:
YeonGyu-Kim
2026-05-26 20:40:28 +09:00
parent 35ec4a2dbe
commit 22c91629b3
98 changed files with 25420 additions and 1 deletions
@@ -0,0 +1,22 @@
package main
import (
"context"
"log/slog"
"os"
"os/signal"
"syscall"
"$module/internal/cmd"
)
func main() {
ctx, stop := signal.NotifyContext(context.Background(),
syscall.SIGINT, syscall.SIGTERM)
defer stop()
if err := cmd.Execute(ctx); err != nil {
slog.Error("fatal", slog.Any("err", err))
os.Exit(1)
}
}