Skip to content

Instantly share code, notes, and snippets.

@NikitaPokryshko
NikitaPokryshko / prompts.md
Created February 26, 2026 12:54 — forked from mberman84/prompts.md
Prompts

OpenClaw: Extracted Prompts (Generalized)

22 copy/paste-ready prompts for building your own AI agent system. Each prompt builds a functional system or implements a proven best practice you can hand to an AI coding assistant.

Replace placeholders like <your-workspace>, <your-messaging-platform>, and <your-model> with your own values.


1. Personal CRM

@NikitaPokryshko
NikitaPokryshko / all_files.md
Created February 26, 2026 12:53 — forked from mberman84/all_files.md
Matt's Markdown Files

OpenClaw: System Prompt File Templates

Generalized versions of all root .md files used by OpenClaw. These files are loaded into the agent's system prompt on every request (except MEMORY.md which is conditional).

Copy these as starting points and customize for your own setup. Replace <placeholders> with your values.


AGENTS.md

@NikitaPokryshko
NikitaPokryshko / README.md
Created November 16, 2022 15:13 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@NikitaPokryshko
NikitaPokryshko / postgres.md
Created November 2, 2022 10:29 — forked from phortuin/postgres.md
Set up postgres + database on MacOS (M1)

Based on this blogpost.

Install with Homebrew:

$ brew install postgresql

Run server:

-------------------------------------------------------------------------------------------------------------------------------------------------
$ bash --version #bash acronym for "Bourne Again Shell"
$ man bash | grep -C2 '$@' #"$@" as explained below under Special Parameters
-----------------------------------------------------------------------------------------------------
#Current Shell
$ echo $SHELL
$ echo $0
$ readlink /proc/$$/exe
$ cat /proc/$$/cmdline
@NikitaPokryshko
NikitaPokryshko / iterm2-solarized.md
Created October 19, 2022 19:02 — forked from kevin-smets/iterm2-solarized.md
iTerm2 + Oh My Zsh + Solarized color scheme + Source Code Pro Powerline + Font Awesome + [Powerlevel10k] - (macOS)

Default

Default

Powerlevel10k

Powerlevel10k

@NikitaPokryshko
NikitaPokryshko / git_overriding_script.sh
Last active April 14, 2021 18:03
Git filter-branch script for author overriding
git filter-branch --env-filter '
WRONG_EMAIL="email-to-override.com"
NEW_NAME="New Name"
NEW_EMAIL="new-email.com"
if [ "$GIT_COMMITTER_EMAIL" = "$WRONG_EMAIL" ]
then
export GIT_COMMITTER_NAME="$NEW_NAME"
export GIT_COMMITTER_EMAIL="$NEW_EMAIL"
fi
@NikitaPokryshko
NikitaPokryshko / MacOS_commands.md
Created February 6, 2020 11:51
Mac OS commands

Mac OS commands

To kill process on port:

lsof -i:<PORT_NUMBER>
=> COMMAND, PID, USER and etc...
kill -9 <PID>
@NikitaPokryshko
NikitaPokryshko / vs_code_hotkeys.md
Last active April 22, 2025 11:15
VS Code Hotkeys

VSCode Shortcuts

List of helpful shortcuts for faster coding

If you have any other helpful shortcuts, feel free to add in the comments of this gist :)

Official List of all commands