From 1252f41cee8c4595dfc6de33e21e635068056f8a Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 28 Feb 2026 21:57:28 +0000 Subject: [PATCH 1/5] docs: rewrite root README with ToC and all 6 plugins --- README.md | 109 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 81 insertions(+), 28 deletions(-) diff --git a/README.md b/README.md index 7ad723a..0cc55c1 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,34 @@ Plugins for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE) [![Claude Code](https://img.shields.io/badge/Claude%20Code-Compatible-blueviolet)](https://docs.anthropic.com/en/docs/claude-code) +## Plugins + +| Plugin | What it does | +|--------|-------------| +| [Status Hub](#status-hub) | Track PRs, calendar, Slack, stocks, music in your statusline | +| [TradingView](#tradingview) | AI-powered market screening via 75+ indicators | +| [local-brain](#local-brain) | Auto-capture sessions into a compounding Obsidian vault | +| [mdbrowser](#mdbrowser) | Browse any URL as clean markdown | +| [Vibes](#vibes) | Sentiment-driven musical phrases on task completion | +| [Remote Layout](#remote-layout) | Mobile-friendly response formatting for remote sessions | + +--- + ## Status Hub **Your world at a glance, without leaving the terminal.** -![Status Hub Demo](plugins/claude-status-hub/assets/demo.gif) +Track PRs, calendar, Slack, stocks, and music — all surfaced in your Claude Code statusline. Alerts appear non-blocking; `/hub-ack` gives smart context-aware actions (merge PR, join meeting, reply to Slack). -Track PRs, calendar, Slack, stocks, music—all in your statusline. - -**The flow:** `/hub-setup` → add monitors → alerts appear → `/hub-ack` for smart actions (merge PR, join meeting, reply to Slack). +``` +/hub-setup → Configure statusline integration + ↓ +/hub- → Add monitors (PRs, calendar, Slack, finance) + ↓ +[statusline alert] → Non-blocking notification appears + ↓ +/hub-ack → Smart actions based on context +``` **Install:** ```bash @@ -22,12 +41,16 @@ Track PRs, calendar, Slack, stocks, music—all in your statusline. /hub-setup ``` -→ [Full documentation](plugins/claude-status-hub) — workflow examples, all services, commands +→ [Full documentation](plugins/claude-status-hub) + +--- ## TradingView **AI-powered market screening, without leaving the terminal.** +Screen stocks, forex, crypto, and ETFs using TradingView's 75+ fundamental and technical indicators. Check market regime across global indexes before running a screening strategy. + ``` /market-regime @@ -38,12 +61,8 @@ Track PRs, calendar, Slack, stocks, music—all in your statusline. │ OMX Stockholm 30 │ 2,547 │ 2,601 │ -2.08% │ 🟢 │ │ Nikkei 225 │ 38,026 │ 42,426 │ -10.37% │ 🔴 │ └─────────────────────┴──────────┴──────────┴───────────┴────────┘ - -Overall: 2/3 indexes in normal range ``` -Screen stocks, forex, crypto, and ETFs using TradingView's 75+ fundamental and technical indicators. - **Install:** ```bash /plugin marketplace add fiale-plus/fiale-claude-plugins @@ -53,13 +72,56 @@ Screen stocks, forex, crypto, and ETFs using TradingView's 75+ fundamental and t → [Full documentation](plugins/tradingview) +--- + +## local-brain + +**Every Claude Code session, synthesized into a compounding Obsidian vault.** + +Auto-captures transcripts on session end (zero manual steps), synthesizes them into structured Obsidian notes — summaries, decisions, learnings, alignment signal. Weekly reflections surface patterns across sessions. Knowledge compounds automatically over time. + +**Install:** +```bash +/plugin marketplace add fiale-plus/fiale-claude-plugins +/plugin install local-brain +/brain-setup +``` + +→ [Full documentation](plugins/local-brain) + +--- + +## mdbrowser + +**Browse any website as markdown, without leaving the terminal.** + +One-shot fetch converts any URL to clean markdown. Interactive sessions let you click links, fill forms, and navigate — all through Claude's tool calls. + +``` +/browse https://news.ycombinator.com + +# Hacker News + +- [Show HN: I built a thing](https://example.com) — 142 points +- [Why Rust is eating the world](https://example.com) — 89 points +``` + +**Install:** +```bash +/plugin marketplace add fiale-plus/fiale-claude-plugins +/plugin install mdbrowser +/browse https://example.com +``` + +→ [Full documentation](plugins/mdbrowser) + +--- + ## Vibes **Your session's emotional arc, in sound.** -Plays a short musical phrase whenever Claude finishes a task or needs your attention. Mood is inferred from the transcript: triumphant on success, gentle descend on errors, unresolved on notifications, settled when neutral. - -Pure-Python synthesis — no audio files, no dependencies. Requires macOS (`afplay`). +Plays a short musical phrase whenever Claude finishes a task or needs your attention. Mood is inferred from the transcript: triumphant on success, gentle descent on errors, unresolved on notifications. Pure-Python synthesis — no audio files, no dependencies. Requires macOS (`afplay`). **Install:** ```bash @@ -69,40 +131,31 @@ Pure-Python synthesis — no audio files, no dependencies. Requires macOS (`afpl → [Full documentation](plugins/vibes) +--- + ## Remote Layout **Mobile-friendly responses for Claude Code remote control sessions.** -Switch Claude's response format for small screens with `/remote-layout `: +Switch Claude's response format for small screens. Three modes: `code` (hard 28-char lines), `code-wrap` (zoom-mode autowrap), `watch` (ultra-terse with one-tap numbered replies). Persists across sessions. | Mode | Description | |------|-------------| | `code` | Fenced code block, 28-char lines — tight monospace | | `code-wrap` | Fenced code block, no line limit — zoom-mode autowrap | -| `watch` | Ultra-terse, always ends with 3 numbered REPLY options for one-tap responses | - -``` - STATUS - ────── - mode: watch · v1.0.5 - - REPLY - ───── - 1: install now - 2: read the docs - 3: skip -``` - -*Designed entirely from a phone during a live remote control session (Feb 2026).* +| `watch` | Ultra-terse, always ends with 3 numbered REPLY options | **Install:** ```bash /plugin marketplace add fiale-plus/fiale-claude-plugins /plugin install remote-layout +/remote-layout watch ``` → [Full documentation](plugins/remote-layout) +--- + ## License MIT From f006eecfa4690e72bf1406398b689b9745aaa073 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 28 Feb 2026 21:59:22 +0000 Subject: [PATCH 2/5] docs: split Status Hub description into two paragraphs --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0cc55c1..3c97a1d 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,9 @@ Plugins for [Claude Code](https://docs.anthropic.com/en/docs/claude-code). **Your world at a glance, without leaving the terminal.** -Track PRs, calendar, Slack, stocks, and music — all surfaced in your Claude Code statusline. Alerts appear non-blocking; `/hub-ack` gives smart context-aware actions (merge PR, join meeting, reply to Slack). +Track PRs, calendar, Slack, stocks, and music — all surfaced in your Claude Code statusline. + +Alerts appear non-blocking; `/hub-ack` gives smart context-aware actions (merge PR, join meeting, reply to Slack). ``` /hub-setup → Configure statusline integration From eb98f380f4b7e4cf5e52b7f877b06a2839bbac74 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 28 Feb 2026 22:00:55 +0000 Subject: [PATCH 3/5] docs: add marketplace step and first-run cmd to remote-layout README --- plugins/claude-status-hub/README.md | 2 -- plugins/remote-layout/README.md | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/claude-status-hub/README.md b/plugins/claude-status-hub/README.md index cf3de80..8144e6d 100644 --- a/plugins/claude-status-hub/README.md +++ b/plugins/claude-status-hub/README.md @@ -5,8 +5,6 @@ [![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blueviolet)](https://docs.anthropic.com/en/docs/claude-code) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](../../LICENSE) -![Status Hub Demo](assets/demo.gif) - Track PRs, calendar, Slack, stocks, music—all surfaced in your Claude Code statusline. ## The Workflow diff --git a/plugins/remote-layout/README.md b/plugins/remote-layout/README.md index 7bf02c6..fccd407 100644 --- a/plugins/remote-layout/README.md +++ b/plugins/remote-layout/README.md @@ -77,6 +77,8 @@ Auto-detection signals (best-effort, not guaranteed): ## Install -``` +```bash +/plugin marketplace add fiale-plus/fiale-claude-plugins /plugin install remote-layout +/remote-layout watch ``` From e93f1a9ec13ac67b942ee99f8ac346792546f309 Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 28 Feb 2026 22:01:00 +0000 Subject: [PATCH 4/5] docs: consolidate installation block in local-brain README --- plugins/local-brain/README.md | 8 ++------ plugins/vibes/README.md | 3 +++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/plugins/local-brain/README.md b/plugins/local-brain/README.md index 42d8490..9616000 100644 --- a/plugins/local-brain/README.md +++ b/plugins/local-brain/README.md @@ -27,13 +27,9 @@ Claude Code session ends ## Installation -``` +```bash +/plugin marketplace add fiale-plus/fiale-claude-plugins /plugin install local-brain -``` - -Then run first-time setup: - -``` /brain-setup ``` diff --git a/plugins/vibes/README.md b/plugins/vibes/README.md index c9360fc..cf8320a 100644 --- a/plugins/vibes/README.md +++ b/plugins/vibes/README.md @@ -1,5 +1,8 @@ # vibes +[![Claude Code Plugin](https://img.shields.io/badge/Claude%20Code-Plugin-blueviolet)](https://docs.anthropic.com/en/docs/claude-code) +[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](../../LICENSE) + Sentiment-driven musical phrases on Claude Code events — triumphant on success, contemplative when waiting. ## What it does From 39627356877a59e4700048e25bdbe95f28aff5dd Mon Sep 17 00:00:00 2001 From: OpenClaw Bot Date: Sat, 28 Feb 2026 22:01:05 +0000 Subject: [PATCH 5/5] docs: add badges and marketplace step to vibes README --- plugins/vibes/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/vibes/README.md b/plugins/vibes/README.md index cf8320a..3d296a4 100644 --- a/plugins/vibes/README.md +++ b/plugins/vibes/README.md @@ -48,6 +48,7 @@ with an exponential decay envelope and gentle legato overlap between notes. Outp ## Installation ```bash +/plugin marketplace add fiale-plus/fiale-claude-plugins /plugin install vibes ```