Skip to content

Commit 3d87889

Browse files
committed
fix: list supported formats
1 parent d217555 commit 3d87889

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

cmd/render.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ var renderCmd = &cobra.Command{
1414
Short: "Render rules to a specific format",
1515
Long: `Renders existing rules to a specified format.
1616
Copies all rules from the default location (.rules/) to the target format
17-
as described in render-formats.md.`,
17+
as described in render-formats.md.
18+
19+
Supported formats: continue, cursor, windsurf, claude, copilot, codex, cline, cody, amp`,
1820
Example: ` rules render cursor
1921
rules render continue`,
2022
RunE: func(cmd *cobra.Command, args []string) error {

internal/ruleset/ruleset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func DefaultRuleSet(name string) *RuleSet {
3333
return &RuleSet{
3434
Name: name,
3535
Description: "A ruleset for AI code assistants",
36-
Author: "Anonymous",
36+
Author: "",
3737
License: "CC0-1.0",
3838
Version: "1.0.0",
3939
Rules: make(map[string]string),

0 commit comments

Comments
 (0)