Skip to content

Commit

Permalink
chore: release v0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lxxorz committed Dec 17, 2024
1 parent 1c180f4 commit 13ca6ed
Showing 1 changed file with 39 additions and 15 deletions.
54 changes: 39 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"publisher": "BjornLi",
"name": "ai-rules",
"displayName": "AI Rules",
"version": "0.0.3",
"version": "0.0.4",
"private": true,
"packageManager": "[email protected]",
"description": "Manage and apply AI assistant rules for GitHub Copilot and Cursor",
Expand Down Expand Up @@ -39,25 +39,43 @@
"contributes": {
"commands": [
{
"command": "cig.selectAIPrompt",
"title": "Browse Instructions by Category",
"category": "CIG"
"command": "ai-rules.selectAIPrompt",
"title": "Browse AI Rules by Category",
"category": "AI Rules"
},
{
"command": "cig.searchAIPrompt",
"title": "Search Instructions by Keyword",
"category": "CIG"
"command": "ai-rules.searchAIPrompt",
"title": "Search AI Rules",
"category": "AI Rules"
},
{
"command": "cig.clearGlobalState",
"command": "ai-rules.clearGlobalState",
"title": "Clear Extension State",
"category": "CIG"
"category": "AI Rules"
},
{
"command": "cig.openRuleFile",
"title": "Open AI Config File",
"category": "CIG",
"command": "ai-rules.openRuleFile",
"title": "Open AI Rules File",
"category": "AI Rules",
"icon": "$(notebook-edit)"
},
{
"command": "ai-rules.manageCustomRules",
"title": "Manage Custom Rules",
"category": "AI Rules",
"icon": "$(add)"
},
{
"command": "ai-rules.searchRules",
"title": "Search AI Rules",
"category": "AI Rules",
"icon": "$(search)"
},
{
"command": "ai-rules.createRule",
"title": "Create New Rule",
"category": "AI Rules",
"icon": "$(add)"
}
],
"configuration": {
Expand All @@ -79,13 +97,19 @@
"menus": {
"editor/title": [
{
"command": "cig.openRuleFile",
"group": "navigation"
"command": "ai-rules.searchRules",
"group": "navigation@1",
"when": "resourceFilename =~ /\\.cursorrules$|\\.md$/"
},
{
"command": "ai-rules.createRule",
"group": "navigation@2",
"when": "resourceFilename =~ /\\.cursorrules$|\\.md$/"
}
],
"statusBar": [
{
"command": "cig.openRuleFile",
"command": "ai-rules.openRuleFile",
"group": "navigation"
}
]
Expand Down

0 comments on commit 13ca6ed

Please sign in to comment.