@dealdeploy/skl 0.1.8 → 0.2.0

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/bun.lock CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "lockfileVersion": 1,
3
+ "configVersion": 0,
3
4
  "workspaces": {
4
5
  "": {
5
6
  "name": "skills-manager",
package/index.ts CHANGED
@@ -535,7 +535,7 @@ const footerSep = new TextRenderable(renderer, {
535
535
 
536
536
  const footer = new TextRenderable(renderer, {
537
537
  id: "footer",
538
- content: " ↑↓ move ←→/tab col enter toggle ^a all ^e edit ^d del / search esc quit",
538
+ content: " ↑↓ move ←→/tab col enter toggle ^a all ^e edit ^d del / search q/esc quit",
539
539
  fg: C.footer,
540
540
  height: 1,
541
541
  });
@@ -908,6 +908,12 @@ renderer.keyInput.on("keypress", (key: KeyEvent) => {
908
908
  return;
909
909
  }
910
910
 
911
+ // ── "q" to quit ──
912
+ if (key.sequence === "q") {
913
+ renderer.destroy();
914
+ process.exit(0);
915
+ }
916
+
911
917
  // ── "/" to focus search (vim-style) ──
912
918
  if (key.sequence === "/") {
913
919
  focusArea = "search";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dealdeploy/skl",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "description": "TUI skill manager for Claude Code agents",
5
5
  "module": "index.ts",
6
6
  "bin": {
@@ -1,11 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(git add:*)",
5
- "Bash(comm -23 /tmp/local_claude.txt /tmp/global_claude.txt)",
6
- "Bash(comm -13 /tmp/local_claude.txt /tmp/global_claude.txt)",
7
- "Bash(comm -12 /tmp/local_claude.txt /tmp/global_claude.txt)",
8
- "Bash(/usr/bin/ls:*)"
9
- ]
10
- }
11
- }