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,15 @@
// Package cmd wires the root command and subcommands.
package cmd
import (
"context"
"log/slog"
"os"
)
// Execute runs the root command. Wire cobra/subcommands here.
func Execute(ctx context.Context) error {
slog.New(slog.NewJSONHandler(os.Stderr, &slog.HandlerOptions{Level: slog.LevelInfo}))
slog.InfoContext(ctx, "starting")
return nil
}