-
Notifications
You must be signed in to change notification settings - Fork 95
feat: add PicoClaw personal AI agent stack #690
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
akurinnoy
wants to merge
1
commit into
devfile:main
Choose a base branch
from
akurinnoy:feat/picoclaw-stack
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+106
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| # PicoClaw — Personal AI Agent Stack | ||
| # | ||
| # PicoClaw is an open-source personal AI assistant (Go, MIT). | ||
| # Repo: https://github.com/sipeed/picoclaw | ||
| # | ||
| # The launcher container provides: | ||
| # - Web UI (picoclaw-launcher) on port 18800 — configure agents, channels, etc. | ||
| # - Gateway HTTP server on port 18790 — webhook endpoint for chat channels | ||
| # | ||
| # The editor (VS Code, ttyd, etc.) is chosen separately in the dashboard | ||
| # and injected into the tools container. | ||
| # | ||
| # First boot: open the web UI endpoint and run `picoclaw onboard` | ||
| # in the terminal to configure your API key, then restart the workspace. | ||
|
|
||
| schemaVersion: 2.2.2 | ||
| metadata: | ||
| name: picoclaw | ||
| displayName: PicoClaw Personal AI Agent | ||
| description: A personal AI agent running in your workspace. Connect to 30+ LLM providers and interact via web UI or terminal. | ||
| icon: https://raw.githubusercontent.com/sipeed/picoclaw/main/web/frontend/public/favicon.svg | ||
| tags: | ||
| - AI | ||
| - Agent | ||
| - Terminal | ||
| - PicoClaw | ||
| projectType: AI | ||
| language: Polyglot | ||
| version: 1.0.0 | ||
|
|
||
| attributes: | ||
| controller.devfile.io/storage-type: per-workspace | ||
|
|
||
| components: | ||
| - name: tools | ||
| container: | ||
| image: quay.io/devfile/universal-developer-image:ubi9-latest | ||
| memoryLimit: 1Gi | ||
| memoryRequest: 256Mi | ||
| mountSources: true | ||
|
|
||
| # PicoClaw launcher container. | ||
| # Runs the web UI (port 18800) and gateway (port 18790). | ||
| # Config persists in the PVC at /home/user/.picoclaw. | ||
| - name: picoclaw | ||
| container: | ||
| image: docker.io/sipeed/picoclaw:launcher | ||
| mountSources: false | ||
| memoryRequest: 128Mi | ||
| memoryLimit: 512Mi | ||
| env: | ||
| - name: HOME | ||
| value: /home/user | ||
| - name: PICOCLAW_GATEWAY_HOST | ||
| value: "0.0.0.0" | ||
| endpoints: | ||
| - name: webui | ||
| targetPort: 18800 | ||
| exposure: public | ||
| protocol: https | ||
| attributes: | ||
| cookiesAuthEnabled: true | ||
| discoverable: false | ||
| urlRewriteSupported: false | ||
| - name: gateway | ||
| targetPort: 18790 | ||
| exposure: public | ||
| protocol: https | ||
| attributes: | ||
| cookiesAuthEnabled: true | ||
| discoverable: false | ||
| urlRewriteSupported: false | ||
| volumeMounts: | ||
| - name: picoclaw-data | ||
| path: /home/user/.picoclaw | ||
|
|
||
| - name: picoclaw-data | ||
| volume: | ||
| size: 1Gi | ||
|
|
||
| commands: | ||
| - id: onboard | ||
| exec: | ||
| label: "Configure PicoClaw (onboard)" | ||
| component: picoclaw | ||
| commandLine: picoclaw onboard | ||
| workingDir: /home/user | ||
| - id: status | ||
| exec: | ||
| label: "Show PicoClaw status" | ||
| component: picoclaw | ||
| commandLine: picoclaw status | ||
| workingDir: /home/user | ||
| - id: start-gateway | ||
| exec: | ||
| label: "Start PicoClaw gateway" | ||
| component: picoclaw | ||
| commandLine: picoclaw gateway --host '[::]' | ||
| workingDir: /home/user | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| name: picoclaw | ||
| displayName: PicoClaw Personal AI Agent | ||
| description: A personal AI agent running in your workspace. Connect to 30+ LLM providers and interact via web UI or terminal. | ||
| icon: https://raw.githubusercontent.com/sipeed/picoclaw/main/web/frontend/public/favicon.svg | ||
| versions: | ||
| - version: 1.0.0 | ||
| default: true |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.