@mtayfur/opencode-prompt-enhancer 0.0.9 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtayfur/opencode-prompt-enhancer",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "description": "OpenCode plugin that rewrites rough drafts into stronger prompts.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -522,10 +522,6 @@ const tui: TuiPlugin = async (api, options) => {
522
522
  category: "Prompt",
523
523
  keybind: "ctrl+e",
524
524
  suggested: true,
525
- slash: {
526
- name: "enhance",
527
- aliases: ["enhance-prompt"],
528
- },
529
525
  onSelect: () => {
530
526
  openEnhanceDialog(api, options, state, api.lifecycle.signal)
531
527
  },
@@ -536,10 +532,6 @@ const tui: TuiPlugin = async (api, options) => {
536
532
  description: "Revert last prompt enhancement (Ctrl+Shift+E)",
537
533
  category: "Prompt",
538
534
  keybind: "ctrl+shift+e",
539
- slash: {
540
- name: "revert-enhance",
541
- aliases: ["revert-enhancement"],
542
- },
543
535
  onSelect: () => {
544
536
  revertEnhancement(api, state, api.lifecycle.signal)
545
537
  },