1
0
Fork 0

feat: initial companion repo for OpenClaw vs Claude Code article

40 files demonstrating every major OpenClaw capability using Claude Code:
- 3 agents (researcher, writer, reviewer)
- 3 skills (daily-briefing, slack-message, web-research)
- 2 security hooks (pre-tool-use blocker, post-tool-use logger)
- 10 self-contained examples with copy-paste prompts
- Complete feature map (20 capabilities, 11 full match, 7 different, 2 gap)
- Security docs including NemoClaw comparison
- Automation, messaging, browser, memory documentation

Zero dependencies. Clone and run.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kjell Tore Guttormsen 2026-03-26 09:47:29 +01:00
commit 2491f5c732
40 changed files with 2037 additions and 0 deletions

View file

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- Unique reverse-DNS label for this job. Change to match your domain. -->
<key>Label</key>
<string>com.example.claude-daily-briefing</string>
<!-- The program to run. /bin/bash executes the shell script. -->
<key>ProgramArguments</key>
<array>
<string>/bin/bash</string>
<!-- CUSTOMIZE: Replace with the absolute path to your daily-briefing.sh -->
<string>/path/to/claude-code-complete-agent/automation/daily-briefing.sh</string>
</array>
<!-- Run daily at 07:00. Adjust Hour/Minute as needed. -->
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>7</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
<!-- Redirect stdout to a log file. CUSTOMIZE path. -->
<key>StandardOutPath</key>
<string>/tmp/claude-daily-briefing.log</string>
<!-- Redirect stderr to a separate log file. CUSTOMIZE path. -->
<key>StandardErrorPath</key>
<string>/tmp/claude-daily-briefing.err</string>
<!-- Run whether or not the user is logged in. -->
<key>RunAtLoad</key>
<false/>
</dict>
</plist>
<!--
SETUP:
1. Copy this file to ~/Library/LaunchAgents/com.example.claude-daily-briefing.plist
2. Customize the Label, ProgramArguments path, and log paths above
3. Load it: launchctl load ~/Library/LaunchAgents/com.example.claude-daily-briefing.plist
4. Verify: launchctl list | grep claude
UNLOAD:
launchctl unload ~/Library/LaunchAgents/com.example.claude-daily-briefing.plist
NOTE: LaunchAgents run in the user session. The claude binary must be in PATH
or specified with its full path (e.g., /usr/local/bin/claude).
-->