ikanban-web 0.2.6 → 0.2.8

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.
Files changed (43) hide show
  1. package/README.md +25 -20
  2. package/dist/assets/{ghostty-web-BsS8qmby.js → ghostty-web--axxBQj6.js} +1 -1
  3. package/dist/assets/{home-BVcfU4oW.js → home-BAEIhduF.js} +1 -1
  4. package/dist/assets/{index-B1DFsnCu.css → index-B0TEjAod.css} +1 -1
  5. package/dist/assets/{index-BbYqEnGb.js → index-BR3vRMWX.js} +124 -116
  6. package/dist/assets/session-Bp9iU6SU.js +24 -0
  7. package/dist/index.html +19 -6
  8. package/package.json +1 -1
  9. package/src/components/dialog-session-timeline.tsx +85 -0
  10. package/src/components/prompt-input.tsx +3 -3
  11. package/src/components/session/session-header.tsx +2 -211
  12. package/src/components/settings-general.tsx +18 -93
  13. package/src/context/global-sync/child-store.ts +1 -0
  14. package/src/context/global-sync/event-reducer.test.ts +5 -0
  15. package/src/context/global-sync/event-reducer.ts +263 -183
  16. package/src/context/global-sync/types.ts +3 -0
  17. package/src/context/highlights.tsx +4 -176
  18. package/src/context/server.tsx +24 -4
  19. package/src/context/sync.tsx +237 -2
  20. package/src/i18n/en.ts +12 -1
  21. package/src/i18n/parity.test.ts +4 -22
  22. package/src/i18n/zh.ts +23 -1
  23. package/src/pages/layout.tsx +13 -56
  24. package/src/pages/session/review-tab.tsx +3 -1
  25. package/src/pages/session/session-side-panel.tsx +17 -51
  26. package/src/pages/session/use-session-commands.tsx +91 -154
  27. package/src/pages/session.tsx +87 -16
  28. package/dist/assets/session-CZ-wC_3g.js +0 -24
  29. package/src/i18n/ar.ts +0 -751
  30. package/src/i18n/br.ts +0 -759
  31. package/src/i18n/bs.ts +0 -836
  32. package/src/i18n/da.ts +0 -830
  33. package/src/i18n/de.ts +0 -768
  34. package/src/i18n/es.ts +0 -842
  35. package/src/i18n/fr.ts +0 -766
  36. package/src/i18n/ja.ts +0 -755
  37. package/src/i18n/ko.ts +0 -755
  38. package/src/i18n/no.ts +0 -838
  39. package/src/i18n/pl.ts +0 -757
  40. package/src/i18n/ru.ts +0 -838
  41. package/src/i18n/th.ts +0 -828
  42. package/src/i18n/tr.ts +0 -849
  43. package/src/i18n/zht.ts +0 -821
package/README.md CHANGED
@@ -1,34 +1,39 @@
1
- ## Usage
1
+ # ikanban
2
2
 
3
- Dependencies for these templates are managed with [pnpm](https://pnpm.io) using `pnpm up -Lri`.
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
- This is the reason you see a `pnpm-lock.yaml`. That said, any package manager will work. This file can safely be removed once you clone a template.
5
+ ## UI Previews
6
6
 
7
- ```bash
8
- $ npm install # or pnpm install or yarn install
9
- ```
7
+ <details>
8
+ <summary>Expand screenshots</summary>
10
9
 
11
- ### Learn more on the [Solid Website](https://solidjs.com) and come chat with us on our [Discord](https://discord.com/invite/solidjs)
10
+ <img width="3695" height="2149" alt="Image" src="https://github.com/user-attachments/assets/b5ca21b8-b8aa-46f6-84cc-8906f629b6c8" />
12
11
 
13
- ## Available Scripts
12
+ </details>
14
13
 
15
- In the project directory, you can run:
14
+ ## Quick Start
16
15
 
17
- ### `npm run dev` or `npm start`
16
+ ### Option 1: Use the hosted app (recommended)
18
17
 
19
- Runs the app in the development mode.<br>
20
- Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
18
+ Open: https://isomoes.github.io/ikanban
21
19
 
22
- The page will reload if you make edits.<br>
20
+ Start OpenCode with CORS enabled for GitHub Pages:
23
21
 
24
- ### `npm run build`
22
+ ```bash
23
+ opencode serve --port <PORT> --cors https://isomoes.github.io
24
+ ```
25
25
 
26
- Builds the app for production to the `dist` folder.<br>
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
- The build is minified and the filenames include the hashes.<br>
30
- Your app is ready to be deployed!
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
- ## Deployment
36
+ ## Acknowledgments
33
37
 
34
- You can deploy the `dist` folder to any static host provider (netlify, surge, now, etc.)
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)