From ftitos-claude-code
Transform Claude Code into a fully autonomous agent system with persistent memory, scheduled operations, and task queuing.
npx claudepluginhub nassimbf/ftitos-claude-codeThis skill uses the workspace's default tool permissions.
Turn Claude Code into a persistent, self-directing agent system using native features and MCP servers.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Turn Claude Code into a persistent, self-directing agent system using native features and MCP servers.
Claude Code Runtime
├── Crons (scheduled tasks)
├── Dispatch (remote agents)
├── Memory Store (persistent context)
└── Computer Use (browser/desktop)
│
▼
Skill + Agent Layer
(skills, agents, commands, hooks)
│
▼
MCP Server Layer
(memory, github, search, browser-use)
| Pattern | Schedule | Use Case |
|---|---|---|
| Daily standup | 0 9 * * 1-5 | Review PRs, issues, deploy status |
| Weekly review | 0 10 * * 1 | Code quality metrics, test coverage |
| Hourly monitor | 0 * * * * | Production health, error rate checks |
| Nightly build | 0 2 * * * | Full test suite, security scan |
Trigger Claude Code agents remotely for event-driven workflows:
# Trigger from CI/CD
claude -p "Build failed on main. Diagnose and fix."
# Trigger from another agent
claude -p "Analyze the output of the security scan and create issues for findings"
Manage a persistent queue of tasks that survive session boundaries:
## Active Tasks
- [ ] PR #123: Review and approve if CI green
- [ ] Monitor deploy: check /health every 30 min for 2 hours
## Completed
- [x] Daily standup: reviewed 3 PRs, 2 issues
Cron: every 30 min during work hours
1. Check for new PRs on watched repos
2. For each new PR: pull branch, run tests, review changes
3. Post review comments
4. Update memory with review status
Cron: daily at 6 AM
1. Check saved search queries in memory
2. Run searches for each query
3. Summarize new findings
4. Compare against yesterday's results
5. Flag high-priority items for morning review