@akonwi/kit 0.6.0 → 0.7.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/dist/kit CHANGED
Binary file
package/dist/plugin.d.ts CHANGED
@@ -1,7 +1,12 @@
1
1
  export { Type } from "typebox";
2
2
 
3
- import type { AgentMessage } from "@earendil-works/pi-agent-core";
4
- import type { Api, Model, Static, TSchema } from "@earendil-works/pi-ai";
3
+ import type {
4
+ AgentMessage,
5
+ Api,
6
+ Model,
7
+ Static,
8
+ TSchema,
9
+ } from "../runtime/agent";
5
10
  import type {
6
11
  SyntaxPalette,
7
12
  ThemeConfig,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akonwi/kit",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "author": "Akonwi Ngoh <akonwi@gmail.com>",
5
5
  "description": "A TUI coding agent",
6
6
  "license": "MIT",
@@ -9,7 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/akonwi/kit.git"
11
11
  },
12
- "homepage": "https://github.com/akonwi/kit#readme",
12
+ "homepage": "https://akonwi.io/kit",
13
13
  "bugs": {
14
14
  "url": "https://github.com/akonwi/kit/issues"
15
15
  },
package/README.md DELETED
@@ -1,71 +0,0 @@
1
- # kit
2
-
3
- Kit is a TUI coding agent heavily inspired by [Pi](https://pi.dev) and built on top of [`pi-agent-core`](https://github.com/earendil-works/pi-mono/tree/main/packages/agent) with [OpenTUI](https://opentui.com/).
4
-
5
- ## Requirements
6
-
7
- - [Bun](https://bun.sh) `>= 1.3.0`
8
-
9
- ## Install
10
-
11
- From npm:
12
-
13
- ```bash
14
- bun install --global @akonwi/kit
15
- ```
16
-
17
- From a checkout:
18
-
19
- ```bash
20
- bun install
21
- bun run build
22
- bun link
23
- ```
24
-
25
- The packaged CLI uses the compiled binary as its non-development entry point.
26
-
27
- ## Usage
28
-
29
- ```bash
30
- kit # resumes the most recent session for the current directory or starts a new one
31
- kit -s abc123 # opens a specific session by ID (long or short id)
32
- kit threads # launches a session picker
33
- ```
34
-
35
- ## What Kit includes
36
-
37
- - terminal-first coding agent workflow
38
- - session restore and persistence
39
- - slash commands, prompt commands, and skills
40
- - settings UI and app-owned settings
41
- - code review tools and diff browser
42
-
43
- For feature details, see [`docs/features/`](docs/features/).
44
-
45
- ## Development
46
-
47
- Commit messages in this repo should use [Conventional Commits](https://www.conventionalcommits.org/), preferably in the form `type(scope): summary`.
48
-
49
- Run from source:
50
-
51
- ```bash
52
- bun run dev
53
- ```
54
-
55
- Build the distributed binary:
56
-
57
- ```bash
58
- bun run build
59
- ```
60
-
61
- Preview the npm package contents:
62
-
63
- ```bash
64
- bun run pack:dry
65
- ```
66
-
67
- ## More documentation
68
-
69
- - feature docs: [`docs/features/`](docs/features/)
70
- - ADRs: [`docs/adrs/`](docs/adrs/)
71
- - project guidance: [`AGENTS.md`](AGENTS.md)