@skillkit/tui 1.5.0 → 1.6.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/README.md CHANGED
@@ -32,16 +32,65 @@ skillkit
32
32
 
33
33
  ## Screens
34
34
 
35
- ### Home
35
+ ### Home (h)
36
36
  Overview of your project and quick actions. Shows detected agents, installed skills count, and navigation hints.
37
37
 
38
+ ### Marketplace (m)
39
+ Browse curated skill marketplace:
40
+ - Search across 33+ repositories
41
+ - Filter by tags and categories
42
+ - View popularity metrics
43
+ - Install with one key
44
+
38
45
  ### Browse (b)
39
- Explore available skills from curated repositories. Features:
46
+ Explore available skills from curated repositories:
40
47
  - Search skills with `/`
41
48
  - Filter by tags
42
49
  - View skill details
43
50
  - One-key installation
44
51
 
52
+ ### Workflow (w)
53
+ Manage and execute workflows:
54
+ - List available workflows
55
+ - View workflow steps
56
+ - Execute workflows
57
+ - Monitor progress
58
+
59
+ ### Execute (x)
60
+ Execute skills with checkpoints:
61
+ - Task-based execution
62
+ - Decision and review checkpoints
63
+ - Dry-run mode
64
+ - Git integration
65
+
66
+ ### Team (a)
67
+ Team collaboration management:
68
+ - Create and share skill bundles
69
+ - Import team bundles
70
+ - Sync with remote registry
71
+ - Manage team members
72
+
73
+ ### Plugins (p)
74
+ Plugin system management:
75
+ - List installed plugins
76
+ - Install new plugins
77
+ - Enable/disable plugins
78
+ - View plugin details
79
+
80
+ ### Methodology (o)
81
+ Development methodologies:
82
+ - Browse 5 methodologies (Agile, TDD, DevOps, Design Thinking, Feature Flags)
83
+ - View methodology skills
84
+ - Apply to project
85
+ - Track adoption
86
+
87
+ ### Plan (n)
88
+ Structured plan system:
89
+ - Parse plan files
90
+ - Validate plan structure
91
+ - Execute plans step-by-step
92
+ - Track progress
93
+
45
94
  ### Recommend (r)
46
95
  AI-powered skill suggestions based on your project:
47
96
  - Analyzes your package.json, configs, and file structure
@@ -63,7 +112,14 @@ View and manage project context:
63
112
  - Installed agents
64
113
  - Sync context to all agents
65
114
 
66
- ### Installed (l)
115
+ ### Memory (e)
116
+ Session memory system:
117
+ - View learnings
118
+ - Search past sessions
119
+ - Compress observations
120
+ - Export as skills
121
+
122
+ ### Installed (i)
67
123
  Manage your installed skills:
68
124
  - View all installed skills
69
125
  - Enable/disable skills
@@ -87,17 +143,24 @@ Configure SkillKit:
87
143
  | Key | Action |
88
144
  |-----|--------|
89
145
  | `h` | Home screen |
146
+ | `m` | Marketplace |
90
147
  | `b` | Browse skills |
148
+ | `w` | Workflows |
149
+ | `x` | Execute |
150
+ | `a` | Team collaboration |
151
+ | `p` | Plugins |
152
+ | `o` | Methodology |
153
+ | `n` | Plan system |
91
154
  | `r` | Recommendations |
92
155
  | `t` | Translate skills |
93
156
  | `c` | Context management |
94
- | `l` | List installed |
157
+ | `e` | Memory/Learnings |
158
+ | `i` | Installed skills |
95
159
  | `s` | Sync skills |
96
160
  | `,` | Settings |
97
161
  | `↑/↓` | Navigate lists |
98
162
  | `Enter` | Select / Confirm |
99
163
  | `/` | Search |
100
- | `m` | Multi-select mode |
101
164
  | `Tab` | Switch focus |
102
165
  | `Esc` | Go back |
103
166
  | `?` | Help |
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as react from 'react';
3
3
  import { ScoredSkill, ProjectProfile, Learning, Observation, MemoryStatus } from '@skillkit/core';
4
4
 
5
- type Screen = 'home' | 'browse' | 'installed' | 'sync' | 'settings' | 'recommend' | 'translate' | 'context' | 'workflow' | 'execute' | 'history' | 'marketplace' | 'memory' | 'team' | 'plugins';
5
+ type Screen = 'home' | 'browse' | 'installed' | 'sync' | 'settings' | 'recommend' | 'translate' | 'context' | 'workflow' | 'execute' | 'history' | 'marketplace' | 'memory' | 'team' | 'plugins' | 'methodology' | 'plan';
6
6
  declare function App(): react_jsx_runtime.JSX.Element;
7
7
 
8
8
  interface SidebarProps {
@@ -61,89 +61,101 @@ interface HomeProps {
61
61
  }
62
62
  declare function Home({ cols, rows }: HomeProps): react_jsx_runtime.JSX.Element;
63
63
 
64
+ interface Props$f {
65
+ cols?: number;
66
+ rows?: number;
67
+ }
68
+ declare function Browse({ rows }: Props$f): react_jsx_runtime.JSX.Element;
69
+
70
+ interface Props$e {
71
+ cols?: number;
72
+ rows?: number;
73
+ }
74
+ declare function Installed({ rows }: Props$e): react_jsx_runtime.JSX.Element;
75
+
64
76
  interface Props$d {
65
77
  cols?: number;
66
78
  rows?: number;
67
79
  }
68
- declare function Browse({ rows }: Props$d): react_jsx_runtime.JSX.Element;
80
+ declare function Sync({ rows }: Props$d): react_jsx_runtime.JSX.Element;
69
81
 
70
82
  interface Props$c {
71
83
  cols?: number;
72
84
  rows?: number;
73
85
  }
74
- declare function Installed({ rows }: Props$c): react_jsx_runtime.JSX.Element;
86
+ declare function Settings(_props: Props$c): react_jsx_runtime.JSX.Element;
75
87
 
76
88
  interface Props$b {
77
89
  cols?: number;
78
90
  rows?: number;
79
91
  }
80
- declare function Sync({ rows }: Props$b): react_jsx_runtime.JSX.Element;
92
+ declare function Recommend({ rows }: Props$b): react_jsx_runtime.JSX.Element;
81
93
 
82
94
  interface Props$a {
83
95
  cols?: number;
84
96
  rows?: number;
85
97
  }
86
- declare function Settings(_props: Props$a): react_jsx_runtime.JSX.Element;
98
+ declare function Translate({ rows }: Props$a): react_jsx_runtime.JSX.Element;
87
99
 
88
100
  interface Props$9 {
89
101
  cols?: number;
90
102
  rows?: number;
91
103
  }
92
- declare function Recommend({ rows }: Props$9): react_jsx_runtime.JSX.Element;
104
+ declare function Context({ rows }: Props$9): react_jsx_runtime.JSX.Element;
93
105
 
94
106
  interface Props$8 {
95
107
  cols?: number;
96
108
  rows?: number;
97
109
  }
98
- declare function Translate({ rows }: Props$8): react_jsx_runtime.JSX.Element;
110
+ declare function Memory({ rows }: Props$8): react_jsx_runtime.JSX.Element;
99
111
 
100
112
  interface Props$7 {
101
113
  cols?: number;
102
114
  rows?: number;
103
115
  }
104
- declare function Context({ rows }: Props$7): react_jsx_runtime.JSX.Element;
116
+ declare function Workflow({ rows }: Props$7): react_jsx_runtime.JSX.Element;
105
117
 
106
118
  interface Props$6 {
107
119
  cols?: number;
108
120
  rows?: number;
109
121
  }
110
- declare function Memory({ rows }: Props$6): react_jsx_runtime.JSX.Element;
122
+ declare function Execute({ rows }: Props$6): react_jsx_runtime.JSX.Element;
111
123
 
112
124
  interface Props$5 {
113
125
  cols?: number;
114
126
  rows?: number;
115
127
  }
116
- declare function Workflow({ rows }: Props$5): react_jsx_runtime.JSX.Element;
128
+ declare function History({ rows }: Props$5): react_jsx_runtime.JSX.Element;
117
129
 
118
130
  interface Props$4 {
119
131
  cols?: number;
120
132
  rows?: number;
121
133
  }
122
- declare function Execute({ rows }: Props$4): react_jsx_runtime.JSX.Element;
134
+ declare function Marketplace({ rows }: Props$4): react_jsx_runtime.JSX.Element;
123
135
 
124
136
  interface Props$3 {
125
137
  cols?: number;
126
138
  rows?: number;
127
139
  }
128
- declare function History({ rows }: Props$3): react_jsx_runtime.JSX.Element;
140
+ declare function Team({ rows }: Props$3): react_jsx_runtime.JSX.Element;
129
141
 
130
142
  interface Props$2 {
131
143
  cols?: number;
132
144
  rows?: number;
133
145
  }
134
- declare function Marketplace({ rows }: Props$2): react_jsx_runtime.JSX.Element;
146
+ declare function Plugins({ rows }: Props$2): react_jsx_runtime.JSX.Element;
135
147
 
136
148
  interface Props$1 {
137
149
  cols?: number;
138
150
  rows?: number;
139
151
  }
140
- declare function Team({ rows }: Props$1): react_jsx_runtime.JSX.Element;
152
+ declare function Methodology({ rows }: Props$1): react_jsx_runtime.JSX.Element;
141
153
 
142
154
  interface Props {
143
155
  cols?: number;
144
156
  rows?: number;
145
157
  }
146
- declare function Plugins({ rows }: Props): react_jsx_runtime.JSX.Element;
158
+ declare function Plan({ rows }: Props): react_jsx_runtime.JSX.Element;
147
159
 
148
160
  interface UseSkillsResult {
149
161
  skills: SkillItem[];
@@ -250,4 +262,4 @@ declare const logo = "\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u
250
262
 
251
263
  declare function startTUI(): Promise<void>;
252
264
 
253
- export { App, Browse, Context, Execute, Header, History, Home, Installed, Marketplace, Memory, Plugins, Recommend, type Screen, SearchInput, Settings, Sidebar, type SkillItem, SkillList, StatusBar, Sync, Team, Translate, Workflow, colors, logo, startTUI, symbols, useKeyboard, useListNavigation, useMarketplace, useMemory, useRecommend, useSkills };
265
+ export { App, Browse, Context, Execute, Header, History, Home, Installed, Marketplace, Memory, Methodology, Plan, Plugins, Recommend, type Screen, SearchInput, Settings, Sidebar, type SkillItem, SkillList, StatusBar, Sync, Team, Translate, Workflow, colors, logo, startTUI, symbols, useKeyboard, useListNavigation, useMarketplace, useMemory, useRecommend, useSkills };