-
Notifications
You must be signed in to change notification settings - Fork 55
feat: omo config profiles integration + audit fixes (skills/plugins/marker/i18n) #56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
60b6e95
fe1a931
245690a
38117ca
4a9ef4d
1317005
6c3b43b
02f3756
054c071
3c71749
e6e028e
d140ef6
8bedfa2
270acad
8b8c97d
c9e884e
4d5ba37
87cf731
f974f56
c5a98e8
6eceea4
b8a6045
1145169
665e2d4
f2ecb87
9c8152d
174cbc3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -481,7 +481,9 @@ | |
| "noMatch": "No skills match \"{search}\"", | ||
| "unknownError": "Unknown error", | ||
| "delete": "Delete", | ||
| "cancel": "Cancel" | ||
| "cancel": "Cancel", | ||
| "deleted": "Skill {name} deleted", | ||
| "deleteFailed": "Failed to delete skill: {error}" | ||
| }, | ||
| "plugins": { | ||
| "incompatibleWarning": "Incompatible with Antigravity. Use openskills instead.", | ||
|
|
@@ -498,7 +500,9 @@ | |
| "noMatch": "No plugins match \"{search}\"", | ||
| "unknownError": "Unknown error", | ||
| "delete": "Delete", | ||
| "cancel": "Cancel" | ||
| "cancel": "Cancel", | ||
| "deleted": "Plugin {name} deleted", | ||
| "deleteFailed": "Failed to delete plugin: {error}" | ||
| }, | ||
| "commands": { | ||
| "loadFailed": "Failed to load commands", | ||
|
|
@@ -612,6 +616,9 @@ | |
| "active": "Active", | ||
| "current": "Current", | ||
| "switch": "Switch", | ||
| "legacyEnv": "Legacy environment", | ||
| "importAndActivate": "Import & activate", | ||
| "activeConsumed": "Already active", | ||
| "deleteTitle": "Delete Profile?", | ||
| "deleteDescription": "This will permanently delete the profile \"{name}\" and all its configuration and history.", | ||
| "cancelBtn": "Cancel", | ||
|
|
@@ -698,7 +705,14 @@ | |
| "modelInterface": "Model Interface", | ||
| "input": "Input", | ||
| "output": "Output", | ||
| "cost": "Cost" | ||
| "cost": "Cost", | ||
| "range24h": "Last 24 hours", | ||
| "range7d": "Last 7 days", | ||
| "range30d": "Last 30 days", | ||
| "range3m": "Last 3 months", | ||
| "range6m": "Last 6 months", | ||
| "range1y": "Last year", | ||
| "rangeCustom": "Custom range" | ||
|
Comment on lines
+708
to
+715
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win Duplicate
📍 Affects 2 files
🤖 Prompt for AI Agents |
||
| }, | ||
| "config": { | ||
| "invalidJson": "Invalid JSON: {error}", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔒 Security & Privacy | 🟠 Major | ⚡ Quick win
Do not expose the development server by default.
--hostname 0.0.0.0accepts connections on every routable interface. This exposes the Next.js development server to other hosts on the local network.Keep
127.0.0.1as the default. Require an explicit environment option for external binding.🤖 Prompt for AI Agents