(deps commandDeps)
| 80 | } |
| 81 | |
| 82 | func newAgentSoulCommand(deps commandDeps) *cobra.Command { |
| 83 | cmd := &cobra.Command{ |
| 84 | Use: authoredContextSoulKey, |
| 85 | Short: "Inspect and manage agent SOUL.md files", |
| 86 | } |
| 87 | cmd.AddCommand(newAgentSoulInspectCommand(deps)) |
| 88 | cmd.AddCommand(newAgentSoulValidateCommand(deps)) |
| 89 | cmd.AddCommand(newAgentSoulWriteCommand(deps)) |
| 90 | cmd.AddCommand(newAgentSoulDeleteCommand(deps)) |
| 91 | cmd.AddCommand(newAgentSoulHistoryCommand(deps)) |
| 92 | cmd.AddCommand(newAgentSoulRollbackCommand(deps)) |
| 93 | return cmd |
| 94 | } |
| 95 | |
| 96 | func newAgentSoulInspectCommand(deps commandDeps) *cobra.Command { |
| 97 | cmd := &cobra.Command{ |
no test coverage detected