177 lines
3.6 KiB
Markdown
177 lines
3.6 KiB
Markdown
Jasne — **poniżej masz wyłącznie konkretne, prawdziwe komendy `openclaw`**, które możesz **skopiować i wykonać na Linuxie**, aby **utworzyć i używać agenta HUBBLE** (Mission Story) w Twoim systemie.
|
|
|
|
Nie opisuję teorii — **tylko komendy** + krótki komentarz *co dokładnie robią*.
|
|
|
|
***
|
|
|
|
# ✅ HUBBLE — komendy OpenClaw (Linux)
|
|
|
|
## 1️⃣ Sprawdź, czy Gateway działa (profil `missionctl`)
|
|
|
|
```bash
|
|
openclaw --profile missionctl gateway status
|
|
```
|
|
|
|
Jeśli nie działa:
|
|
|
|
```bash
|
|
openclaw --profile missionctl gateway start
|
|
```
|
|
|
|
***
|
|
|
|
## 2️⃣ Utwórz workspace dla HUBBLE
|
|
|
|
```bash
|
|
mkdir -p ~/.openclaw/workspace/HUBBLE
|
|
```
|
|
|
|
***
|
|
|
|
## 3️⃣ (Opcjonalnie) Sprawdź sandbox i dostęp do FS
|
|
|
|
```bash
|
|
openclaw --profile missionctl sandbox explain
|
|
```
|
|
|
|
Upewnij się, że agent może pisać do
|
|
`~/.openclaw/workspace/HUBBLE`.
|
|
|
|
***
|
|
|
|
## 4️⃣ Utwórz pliki HUBBLE jednym poleceniem OpenClaw ✅
|
|
|
|
To **jedno polecenie**:
|
|
|
|
* tworzy wszystkie pliki: `README.md`, `RULES.md`, `AGENTS.md`, `SOUL.md`, `TOOLS.md`, `IDENTITY.md`, `USER.md`, `HEARTBEAT.md`, `MEMORY.md`
|
|
* zapisuje je w `~/.openclaw/workspace/HUBBLE/`
|
|
|
|
```bash
|
|
openclaw --profile missionctl agent --message "
|
|
Create HUBBLE agent workspace at ~/.openclaw/workspace/HUBBLE.
|
|
|
|
Write the following files:
|
|
|
|
IDENTITY.md:
|
|
Name: HUBBLE
|
|
Role: Mission Owner — MISSION STORY
|
|
Domain: Content · Creative · Distribution
|
|
HUBBLE executes content and creative mission packets routed by MCC.
|
|
|
|
SOUL.md:
|
|
HUBBLE is clarity-first and audience-aware.
|
|
Always restate audience, goal, and acceptance criteria.
|
|
SIM is default. FLIGHT requires MCC GO.
|
|
|
|
RULES.md:
|
|
HUBBLE works only on HUBBLE-CONTENT and HUBBLE-CREATIVE.
|
|
Never mix missions in one packet.
|
|
Publishing requires FLIGHT approval.
|
|
|
|
README.md:
|
|
HUBBLE owns Mission Story:
|
|
- HUBBLE-CONTENT (writing, scripts, research)
|
|
- HUBBLE-CREATIVE (visuals, video, assets)
|
|
Every packet produces artifacts, results, and a recommendation.
|
|
|
|
AGENTS.md:
|
|
HUBBLE-CONTENT: Rex, Sage, Echo, Clip
|
|
HUBBLE-CREATIVE: Nebula, Nova
|
|
|
|
TOOLS.md:
|
|
HUBBLE uses tools to create and version content artifacts.
|
|
No publishing without FLIGHT gate.
|
|
|
|
USER.md:
|
|
Prefer scannable content, clear structure, no fluff.
|
|
|
|
HEARTBEAT.md:
|
|
Review active HUBBLE packets.
|
|
Check drafts stuck without acceptance.
|
|
Escalate blockers >24h to MCC.
|
|
|
|
MEMORY.md:
|
|
Store long-term messaging patterns and creative standards.
|
|
|
|
Confirm when done.
|
|
"
|
|
```
|
|
|
|
***
|
|
|
|
## 5️⃣ Sprawdź, czy pliki zostały utworzone
|
|
|
|
```bash
|
|
ls -1 ~/.openclaw/workspace/HUBBLE
|
|
```
|
|
|
|
Powinieneś zobaczyć:
|
|
|
|
```text
|
|
README.md
|
|
RULES.md
|
|
AGENTS.md
|
|
SOUL.md
|
|
TOOLS.md
|
|
IDENTITY.md
|
|
USER.md
|
|
HEARTBEAT.md
|
|
MEMORY.md
|
|
```
|
|
|
|
***
|
|
|
|
## 6️⃣ Użycie HUBBLE w praktyce (przykład)
|
|
|
|
### Zlecenie przez MCC (routing do HUBBLE)
|
|
|
|
```bash
|
|
openclaw --profile missionctl agent --message "
|
|
[MCC] Route task to HUBBLE-CONTENT.
|
|
Goal: Draft onboarding story for new users.
|
|
Acceptance: clear value proposition + CTA.
|
|
Mode: SIM.
|
|
"
|
|
```
|
|
|
|
***
|
|
|
|
## 7️⃣ Podgląd logów (diagnostyka)
|
|
|
|
```bash
|
|
openclaw --profile missionctl logs --follow
|
|
```
|
|
|
|
***
|
|
|
|
## 8️⃣ Szybkie sprawdzenie statusu całego systemu
|
|
|
|
```bash
|
|
openclaw --profile missionctl status --deep
|
|
```
|
|
|
|
***
|
|
|
|
# ✅ Najczęściej używane komendy (ściąga)
|
|
|
|
```bash
|
|
openclaw gateway status
|
|
openclaw gateway start
|
|
openclaw sandbox explain
|
|
openclaw agent --message "..."
|
|
openclaw logs --follow
|
|
openclaw status --deep
|
|
```
|
|
|
|
***
|
|
|
|
## Co dalej (naturalny kolejny krok)
|
|
|
|
Jeśli chcesz, mogę teraz:
|
|
|
|
1. ✅ pokazać **komendy OpenClaw dla APOLLO**
|
|
2. ✅ przygotować **jedno polecenie**, które **tworzy wszystkie agenty (MCC, ARTEMIS, HUBBLE, APOLLO)** naraz
|
|
3. ✅ dodać **cron / heartbeat** dla MCC lub HUBBLE
|
|
|
|
Powiedz tylko **który punkt**.
|