ikanban-web 0.2.6 → 0.2.7
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 +25 -20
- package/dist/assets/{ghostty-web-BsS8qmby.js → ghostty-web-BnnMBzi5.js} +1 -1
- package/dist/assets/{home-BVcfU4oW.js → home-DeLBKxk3.js} +1 -1
- package/dist/assets/{index-BbYqEnGb.js → index-ehO8js0v.js} +36 -36
- package/dist/assets/{index-B1DFsnCu.css → index-pnX-hTQP.css} +1 -1
- package/dist/assets/session-D7vMISoz.js +24 -0
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/src/components/session/session-header.tsx +2 -211
- package/src/context/server.tsx +24 -4
- package/src/i18n/en.ts +1 -1
- package/src/i18n/parity.test.ts +4 -22
- package/src/i18n/zh.ts +1 -1
- package/src/pages/layout.tsx +2 -2
- package/src/pages/session/use-session-commands.tsx +0 -121
- package/dist/assets/session-CZ-wC_3g.js +0 -24
- package/src/i18n/ar.ts +0 -751
- package/src/i18n/br.ts +0 -759
- package/src/i18n/bs.ts +0 -836
- package/src/i18n/da.ts +0 -830
- package/src/i18n/de.ts +0 -768
- package/src/i18n/es.ts +0 -842
- package/src/i18n/fr.ts +0 -766
- package/src/i18n/ja.ts +0 -755
- package/src/i18n/ko.ts +0 -755
- package/src/i18n/no.ts +0 -838
- package/src/i18n/pl.ts +0 -757
- package/src/i18n/ru.ts +0 -838
- package/src/i18n/th.ts +0 -828
- package/src/i18n/tr.ts +0 -849
- package/src/i18n/zht.ts +0 -821
package/README.md
CHANGED
|
@@ -1,34 +1,39 @@
|
|
|
1
|
-
|
|
1
|
+
# ikanban
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
iKanban is a Web interface for the [OpenCode](https://opencode.ai) AI coding agent. It unifies chat, terminal, and board workflows in a single interface so teams can plan, execute, and track coding tasks.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## UI Previews
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
```
|
|
7
|
+
<details>
|
|
8
|
+
<summary>Expand screenshots</summary>
|
|
10
9
|
|
|
11
|
-
|
|
10
|
+
<img width="3695" height="2149" alt="Image" src="https://github.com/user-attachments/assets/b5ca21b8-b8aa-46f6-84cc-8906f629b6c8" />
|
|
12
11
|
|
|
13
|
-
|
|
12
|
+
</details>
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
## Quick Start
|
|
16
15
|
|
|
17
|
-
###
|
|
16
|
+
### Option 1: Use the hosted app (recommended)
|
|
18
17
|
|
|
19
|
-
|
|
20
|
-
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
|
|
18
|
+
Open: https://isomoes.github.io/ikanban
|
|
21
19
|
|
|
22
|
-
|
|
20
|
+
Start OpenCode with CORS enabled for GitHub Pages:
|
|
23
21
|
|
|
24
|
-
|
|
22
|
+
```bash
|
|
23
|
+
opencode serve --port <PORT> --cors https://isomoes.github.io
|
|
24
|
+
```
|
|
25
25
|
|
|
26
|
-
|
|
27
|
-
It correctly bundles Solid in production mode and optimizes the build for the best performance.
|
|
26
|
+
Then add your server URL in settings: `http://localhost:<PORT>`.
|
|
28
27
|
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
### Option 2: Run locally with npx
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npx ikanban-web@latest # Start on port 3000
|
|
32
|
+
npx ikanban-web@latest --port 8080 # Custom port
|
|
33
|
+
OPENCODE_URL=http://myserver:4096 npx ikanban-web@latest # External OpenCode server
|
|
34
|
+
```
|
|
31
35
|
|
|
32
|
-
##
|
|
36
|
+
## Acknowledgments
|
|
33
37
|
|
|
34
|
-
|
|
38
|
+
- Inspired by and thanks to the [openchamber](https://github.com/btriapitsyn/openchamber) project.
|
|
39
|
+
- [opencode web UI](https://github.com/anomalyco/opencode/tree/dev/packages/app)
|