name: loom-bridge
description: |
在当前 Claude Code 会话挂起 CodexLoom→Claude Code 实时执行桥:persistent Monitor 双流监听
CodexLoom 消息(comms.ndjson + agent 线程 userMessage),捕获 claude-code: 任务简报,
spawn subagent 执行,以 claude-code-result: 回帖。Use when 用户说 /loom-bridge、挂桥、
接 codexloom 任务、监听 loom、bridge waiting、把这个会话变成执行桥。
Exclude:CodexLoom 服务本体的配置/重启、Codex model provider 配置、把桥固化为系统服务。
metadata:
owner: Peng Xiao
| name | overnight |
|---|---|
| description | Run a long, autonomous, all-night task plan unattended. Opens with an interactive pre-flight GO/NO-GO gate (vet the plan, set usage limits, acquire all credentials), then launches a self-pacing loop that respects the 5-hour session limit (pause/resume) and a weekly usage cap (hard stop), spawns one disposable subagent per task, verifies with spot-checks, and leaves a morning report. Use when the user says "overnight", "work on this all night", "run this while I sleep", "autonomous overnight run", "set up an overnight task", or invokes /overnight. |
| name | diagram | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| description | Generate diagrams as ZenUML or Mermaid DSL, saved to markdown files, with optional image rendering. Use this skill whenever the user asks to create, generate, or visualize any diagram - sequence diagrams, flowcharts, class diagrams, ER diagrams, state diagrams, or architecture diagrams. Triggers on: 'diagram', 'sequence diagram', 'flowchart', 'class diagram', 'ER diagram', 'visualize', 'draw a diagram', 'show me the flow', 'create a diagram from code', 'render diagram', 'diagram screenshot', or any request to turn code/text/ideas into a visual diagram. Also triggers when user says /diagram. | |||||||||||
| allowed-tools |
|
Generate diagrams using ZenUML (sequence diagrams) or Mermaid (everything else), saved as markdown fil
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
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
| #include <WiFi.h> | |
| #include <HTTPClient.h> | |
| const char *ssid = ""; // Your WiFi SSID | |
| const char *password = ""; // Your WiFi password | |
| /** | |
| * If WiFi is connected, the ESP32 will use ADC2 pins (25, 26, 27, 14, 12, 13, 4, 2, 15) for WiFi. | |
| * We must not use ADC2 pins for anything else. | |
| * ADC1 INPUT ONLY: 34, 35, *36, 39 | |
| * ADC1 INPUT / OUTPUT: *32, 33 |
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
| package org.example; | |
| import org.bouncycastle.crypto.AlphabetMapper; | |
| import org.bouncycastle.crypto.util.BasicAlphabetMapper; | |
| import org.bouncycastle.jcajce.spec.FPEParameterSpec; | |
| import org.bouncycastle.jce.provider.BouncyCastleProvider; | |
| import javax.crypto.Cipher; | |
| import javax.crypto.KeyGenerator; | |
| import javax.crypto.NoSuchPaddingException; |
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
| apply plugin: 'org.jetbrains.intellij' | |
| // Disable all Gradle Tasks for the gradle-intellij-plugin as we only use the plugin for the dependencies | |
| buildPlugin.enabled = false | |
| buildSearchableOptions.enabled = false // we only need to disable this one | |
| jarSearchableOptions.enabled = false | |
| patchPluginXml.enabled = false | |
| prepareSandbox.enabled = false | |
| prepareTestingSandbox.enabled = false | |
| prepareUiTestingSandbox.enabled = false |
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
| vertical-align: middle | |
| http://phrogz.net/css/vertical-align/index.html | |
| `vertical-align` can only be used on `table-cell` (such as td or elements with display: table-cell) and inline elements | |
| (such as img or span with display:inline-block). | |
| <div style="display:table-cell; vertical-align:middle"> ... </div> | |
| <img align="middle" ...> | |
| <img style="vertical-align:middle" ...> |
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
| # bash: It requires no other tools | |
| # cat < /dev/tcp/host/port or cat < /dev/udp/host/port | |
| $ cat < /dev/tcp/127.0.0.1/22 | |
| SSH-2.0-OpenSSH_5.3 | |
| # telnet: telnet host port | |
| $ telnet 127.0.0.1 22 | |
| # nc: nc -zv host port1 port2 or port3-port4 | |
| $ nc -zv 127.0.0.1 22 |
NewerOlder
