@skillkit/tui 1.4.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';
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,77 +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
+
76
+ interface Props$d {
77
+ cols?: number;
78
+ rows?: number;
79
+ }
80
+ declare function Sync({ rows }: Props$d): react_jsx_runtime.JSX.Element;
81
+
82
+ interface Props$c {
83
+ cols?: number;
84
+ rows?: number;
85
+ }
86
+ declare function Settings(_props: Props$c): react_jsx_runtime.JSX.Element;
87
+
64
88
  interface Props$b {
65
89
  cols?: number;
66
90
  rows?: number;
67
91
  }
68
- declare function Browse({ rows }: Props$b): react_jsx_runtime.JSX.Element;
92
+ declare function Recommend({ rows }: Props$b): react_jsx_runtime.JSX.Element;
69
93
 
70
94
  interface Props$a {
71
95
  cols?: number;
72
96
  rows?: number;
73
97
  }
74
- declare function Installed({ rows }: Props$a): react_jsx_runtime.JSX.Element;
98
+ declare function Translate({ rows }: Props$a): react_jsx_runtime.JSX.Element;
75
99
 
76
100
  interface Props$9 {
77
101
  cols?: number;
78
102
  rows?: number;
79
103
  }
80
- declare function Sync({ rows }: Props$9): react_jsx_runtime.JSX.Element;
104
+ declare function Context({ rows }: Props$9): react_jsx_runtime.JSX.Element;
81
105
 
82
106
  interface Props$8 {
83
107
  cols?: number;
84
108
  rows?: number;
85
109
  }
86
- declare function Settings({}: Props$8): react_jsx_runtime.JSX.Element;
110
+ declare function Memory({ rows }: Props$8): react_jsx_runtime.JSX.Element;
87
111
 
88
112
  interface Props$7 {
89
113
  cols?: number;
90
114
  rows?: number;
91
115
  }
92
- declare function Recommend({ rows }: Props$7): react_jsx_runtime.JSX.Element;
116
+ declare function Workflow({ rows }: Props$7): react_jsx_runtime.JSX.Element;
93
117
 
94
118
  interface Props$6 {
95
119
  cols?: number;
96
120
  rows?: number;
97
121
  }
98
- declare function Translate({ rows }: Props$6): react_jsx_runtime.JSX.Element;
122
+ declare function Execute({ rows }: Props$6): react_jsx_runtime.JSX.Element;
99
123
 
100
124
  interface Props$5 {
101
125
  cols?: number;
102
126
  rows?: number;
103
127
  }
104
- declare function Context({ rows }: Props$5): react_jsx_runtime.JSX.Element;
128
+ declare function History({ rows }: Props$5): react_jsx_runtime.JSX.Element;
105
129
 
106
130
  interface Props$4 {
107
131
  cols?: number;
108
132
  rows?: number;
109
133
  }
110
- declare function Memory({ rows }: Props$4): react_jsx_runtime.JSX.Element;
134
+ declare function Marketplace({ rows }: Props$4): react_jsx_runtime.JSX.Element;
111
135
 
112
136
  interface Props$3 {
113
137
  cols?: number;
114
138
  rows?: number;
115
139
  }
116
- declare function Workflow({ rows }: Props$3): react_jsx_runtime.JSX.Element;
140
+ declare function Team({ rows }: Props$3): react_jsx_runtime.JSX.Element;
117
141
 
118
142
  interface Props$2 {
119
143
  cols?: number;
120
144
  rows?: number;
121
145
  }
122
- declare function Execute({ rows }: Props$2): react_jsx_runtime.JSX.Element;
146
+ declare function Plugins({ rows }: Props$2): react_jsx_runtime.JSX.Element;
123
147
 
124
148
  interface Props$1 {
125
149
  cols?: number;
126
150
  rows?: number;
127
151
  }
128
- declare function History({ rows }: Props$1): react_jsx_runtime.JSX.Element;
152
+ declare function Methodology({ rows }: Props$1): react_jsx_runtime.JSX.Element;
129
153
 
130
154
  interface Props {
131
155
  cols?: number;
132
156
  rows?: number;
133
157
  }
134
- declare function Marketplace({ rows }: Props): react_jsx_runtime.JSX.Element;
158
+ declare function Plan({ rows }: Props): react_jsx_runtime.JSX.Element;
135
159
 
136
160
  interface UseSkillsResult {
137
161
  skills: SkillItem[];
@@ -153,6 +177,7 @@ interface UseMarketplaceResult {
153
177
  totalCount: number;
154
178
  repos: RepoInfo[];
155
179
  currentRepo: string | null;
180
+ failedRepos: string[];
156
181
  refresh: () => void;
157
182
  search: (query: string) => void;
158
183
  fetchRepo: (source: string) => Promise<void>;
@@ -237,4 +262,4 @@ declare const logo = "\n\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u
237
262
 
238
263
  declare function startTUI(): Promise<void>;
239
264
 
240
- export { App, Browse, Context, Execute, Header, History, Home, Installed, Marketplace, Memory, Recommend, type Screen, SearchInput, Settings, Sidebar, type SkillItem, SkillList, StatusBar, Sync, 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 };