diff --git a/README.md b/README.md index 7ad723a..3c97a1d 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,36 @@ 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. -Track PRs, calendar, Slack, stocks, music—all in your statusline. +Alerts appear non-blocking; `/hub-ack` gives smart context-aware actions (merge PR, join meeting, reply to Slack). -**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 +43,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 +63,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 +74,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 +133,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 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/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/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 ``` diff --git a/plugins/vibes/README.md b/plugins/vibes/README.md index c9360fc..3d296a4 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 @@ -45,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 ```