Skip to content

Instantly share code, notes, and snippets.

@katzy687
katzy687 / OpenClaw-SelfConfigSkill.md
Last active March 1, 2026 23:29
Add to openclaw skills so it will read the docs before attempting config changes
name openclaw-self-config
description Configure OpenClaw settings and platform options. Use this skill when asked to configure OpenClaw, update settings, change options, set up channels or agents, or answer any question about OpenClaw configuration. The official docs will be first read before actions are taken.
metadata
clawdbot
emoji requires
⚙️
bins
openclaw

OpenClaw Self-Config Skill

When to trigger

  • Asked to configure OpenClaw (channels, agents, models, gateway, cron, webhooks, etc.)
@katzy687
katzy687 / ClaudeCode-OpenClawConfigSkill.md
Last active March 1, 2026 23:24
Use this skill from Claude Code running on your openclaw server to perform server config with official OpenClaw docs as context
name openclaw-config
description Configure OpenClaw settings and platform options. Use this skill when the user asks to configure openclaw, update openclaw settings, change openclaw options, set up openclaw channels or agents, or asks any question about openclaw configuration.
tools WebFetch, Read, Bash

OpenClaw Config

Before doing anything else, load the current OpenClaw documentation:

@katzy687
katzy687 / openclaw-ideas-log.md
Created February 25, 2026 04:00
OpenClaw ideas with tags

OpenClaw Ideas

# Title Summary Tag
1 Morning Twitter briefing Daily 7am cron that summarizes latest ~100 tweets, highlights video ideas, and logs to Obsidian. productivity
2 "Moment Before" AI art 5:30am cron that fetches historical "On This Day" event, generates woodcut image of the moment before, and pushes to TRMNL display. fun
3 Self-maintenance updates & backup Daily 4am update + 4:30am backup job that updates OpenClaw, restarts gateway, scrubs secrets, and pushes to GitHub. security
4 Background health checks 30-minute heartbeat (7am-11pm) scanning email, calendar, Coolify for urgencies before notifying. security
5 Research agent w/ sub-agents On-demand research that launches parallel sub-agents across Twitter/Reddit/HN/YouTube/web for deep topic analysis. productivity
6 Content machine / YouTube stats Natural-language YouTube Analytics queries, returning data + interpretation + pattern spotting. product
@katzy687
katzy687 / TS-git-integration-keys.MD
Last active July 22, 2021 10:38
Keys needed for Testshell Git Integration
@katzy687
katzy687 / replace_string_index.py
Last active March 20, 2020 12:48
python insert substring at index of first digit
""" https://stackoverflow.com/a/42831328 """
def _insert_str(string, str_to_insert, index):
return string[:index] + str_to_insert + string[index:]
#example will add a space in between first number
my_str = "hello1234"
# returns index of first digit
digit_index = [x.isdigit() for x in port].index(True)
from cloudshell.helpers.scripts.cloudshell_dev_helpers import attach_to_cloudshell_as
attach_to_cloudshell_as('admin', 'admin', 'Global', '7959e1ab-7551-4f62-8fc1-87750e83d637', '10.212.224.224')
from cloudshell.workflow.orchestration.sandbox import Sandbox
sandbox = Sandbox()
Reservation_ID = sandbox.reservationContextDetails.id
def sandbox_print(message):