🦞
SKILLSQ&A
// How to install, set up, and use your 34 Python skills
⚡ QUICK START
1
DOWNLOAD THE BUNDLE
Get the password-protected ZIP from the subscriber area. Password:
OpenClawSkills20262
EXTRACT FILES
Unzip to any folder. Each skill has its own directory with
.py and .SKILL.md files.3
INSTALL DEPENDENCIES
pip install requests beautifulsoup4 (for web_scraper and api_connector)Other skills use only Python standard library.
4
TEST A SKILL
cd analytics-reporter/python3 analytics_reporter.py
📦 THE 5 CORE SKILLS
| Skill | What It Does | Quick Test |
|---|---|---|
| memory_helper.py | Persistent memory with SQLite | python3 memory_helper.py |
| web_scraper_skill.py | Extract data from any website | python3 web_scraper_skill.py |
| summarizer_skill.py | Smart document summarization | python3 summarizer_skill.py |
| api_connector_skill.py | Weather, news, REST APIs | python3 api_connector_skill.py |
| tool_selector_skill.py | Auto-route tasks to tools | python3 tool_selector_skill.py |
❓ FREQUENTLY ASKED QUESTIONS
⧩ How do I use a skill in my own code?
Import the class and initialize it:
Check each skill’s
from memory_helper import AgentMemorymemory = AgentMemory("my_app.db")Check each skill’s
__main__ section for examples.
⧩ Are these skills safe?
100%. No malware. No backdoors. Every skill hand-inspected by StackOfTruths. All code is open for review.
⧩ Do I need an API key?
Only for some API skills. Weather uses
open-meteo.com (free, no key). News APIs may need keys — check each skill’s comments.
⧩ Can I modify the skills?
Yes! All skills are provided as source code. Fork, modify, improve. Just don’t resell them as your own.
⧩ Why password protected?
So only subscribers get access. Password:
OpenClawSkills2026 — same for all bundles.
⧩ What about the 29 other skills?
They’re in the
stackoftruths_29_COMPLETE_with_metadata.zip bundle. Same password. Each has its own folder and README.
🧠 ADVANCED: INTEGRATING WITH AGENTS
# Example: Using memory_helper in your own agent
from memory_helper import AgentMemory
class MyAgent:
def __init__(self):
self.memory = AgentMemory(“my_agent.db”)
self.memory.remember_agent(“MyAgent”, “Does cool stuff”, [“ai”, “automation”])
def process(self, input_text):
# Store conversation
self.memory.add_memory(f”User said: {input_text}”, “chat”)
# Recall relevant memories
memories = self.memory.search_memories(input_text)
# Get context for prompt
context = self.memory.get_context()
return f”Processed: {input_text}”
⚠️
PRO TIP: Each skill creates its own
.db file on first run.
Keep these files if you want persistent memory across sessions.
⧩ “Module not found” error?
Run:
All other modules are Python standard library.
pip install requests beautifulsoup4All other modules are Python standard library.
⧩ Permission denied?
On Linux/Mac:
Or just run:
chmod +x *.pyOr just run:
python3 skill_name.py
⧩ Where do I put the files?
Anywhere! But if using with agency-agents, copy to:
~/agency-agents/integrations/gemini-cli/skills/




