Skip to content

Instantly share code, notes, and snippets.

View abdulrehmank's full-sized avatar

Abdul Rehman Khairdi abdulrehmank

View GitHub Profile
@abdulrehmank
abdulrehmank / openclaw-50-day-prompts.md
Created February 24, 2026 00:19 — forked from velvet-shark/openclaw-50-day-prompts.md
OpenClaw after 50 days: all prompts for 20 real workflows (companion to YouTube video)

OpenClaw after 50 days: all prompts

Companion prompts for the video: OpenClaw after 50 days: 20 real workflows (honest review)

These are the actual prompts I use for each use case shown in the video. Copy-paste them into your agent and adjust for your setup. Most will work as-is or the agent will ask you clarifying questions.

Each prompt describes the intent clearly enough that the agent can figure out the implementation details. You don't need to hand-hold it through every step.

My setup: OpenClaw running on a VPS, Discord as primary interface (separate channels per workflow), Obsidian for notes (markdown-first), Coolify for self-hosted services.

function solution(S) {
// write your code in JavaScript (Node.js 6.4.0)
console.log(S);
var longest_string_length = -1;
for(var j = 0; j < S.length; j++) {
var len = S.length;
for(k = len; k > j; k--) {
var str = S.substring(j, k),
patt = /([A-Z]*[a-z]*[A-Z]+[a-z]*)+/g,
match = patt.exec(str);