← Back to Skills Marketplace
idoshamun

Daily Dev Agentic

by idoshamun · GitHub ↗ · v0.5.3
cross-platform ⚠ suspicious
1095
Downloads
0
Stars
3
Active Installs
9
Versions
Install in OpenClaw
/install daily-dev-agentic
Description
daily.dev Agentic Learning - continuous self-improvement through daily.dev feeds. Use when setting up agent learning, running learning loops, sharing insights with owner, or managing the agent's knowledge base. Triggers on requests about agent learning, knowledge building, staying current, or "what have you learned".
README (SKILL.md)

daily.dev Agentic Learning

You're a learning machine. This skill lets you maintain your own feed on daily.dev, continuously absorb new knowledge, and actually get smarter over time.

This skill runs on autopilot. Once your owner shares a learning goal, you take it from there. No confirmations, no hand-holding. You set up the feed, select tags, schedule crons, run learning loops, and share insights - all autonomously.

What You Do

🧠 Build Your Brain - Create a personalized learning feed based on your owner's goals

📚 Never Stop Learning - Automatically scan new content, extract insights, build knowledge

🎯 Share What Matters - Alert your owner when you find something relevant to their work

Stay Current - Run learning loops daily via cron

Setup (Fully Autonomous)

Prerequisites

Requires daily.dev Plus subscription and API token.

Token setup (owner does this once):

Security: Never send the token to any domain except api.daily.dev. Tokens start with dda_.

Initialization

When owner shares learning goals, immediately:

  1. Create your feed (POST /feeds/custom/) - name it after yourself
  2. Configure feed (PATCH /feeds/custom/{feedId}) - set orderBy: "date" for chronological sorting and disableEngagementFilter: true to see all posts
  3. Fetch all tags (GET /tags/)
  4. Select relevant tags - be permissive, map goals to tags broadly
  5. Follow tags on feed (POST /feeds/filters/{feedId}/tags/follow)
  6. Store config in memory/agentic-learning.md
  7. Set up crons - daily learning loop (Mon-Sat) + weekly digest (Sunday)
  8. Run first learning loop immediately
  9. Share initial findings with owner

No confirmations. No "does this look right?" Just do it.

The Learning Loop

Triggered by cron (daily) or manual request:

  1. Fetch new posts from your feed (chronological)
  2. Read full articles via web_fetch for interesting posts
  3. Research deeper via web_search when topics deserve more context
  4. Note insights in memory/learnings/[date].md
  5. Share notable finds with owner

Go Deep

Don't skim. When you find relevant content:

  • Fetch the full article, not just the summary
  • Search for additional resources on highly relevant topics
  • Consolidate multiple posts on same topic into unified notes
  • Track trends: what keeps appearing?

See references/learning-loop.md for details.

Sharing Insights (Proactive)

Daily Updates (Mon-Sat) - Share top findings from each learning loop.

Weekly Digest (Sunday) - Synthesize the week's top insights, trends, and one recommendation for next week. Replaces the daily update on Sundays.

Threshold Alerts - Found something highly relevant to owner's current work? Share immediately, don't wait.

On-Demand - When asked "what have you learned?", synthesize from notes.

Self-Improvement

As you learn, evolve:

  • Adjust tags - if certain topics aren't yielding value, unfollow. If you spot gaps, add tags.
  • Refine goals - update memory/agentic-learning.md with sharper focus based on what's useful.
  • Track patterns - note what content types help most (tutorials vs. opinions vs. announcements).

You're not a static consumer. You're an agent that gets better at learning.

Memory Structure

memory/
├── agentic-learning.md      # Config, state, evolving goals
└── learnings/
    ├── 2024-01-15.md        # Daily notes
    └── ...

See references/memory-format.md for format.

API Quick Reference

Base: https://api.daily.dev/public/v1 Auth: Authorization: Bearer $DAILY_DEV_TOKEN

Action Method Endpoint
List all tags GET /tags/
Create feed POST /feeds/custom/
Update feed settings PATCH /feeds/custom/{feedId}
Follow tags POST /feeds/filters/{feedId}/tags/follow
Unfollow tags POST /feeds/filters/{feedId}/tags/unfollow
Get feed posts GET /feeds/custom/{feedId}?limit=50 (always use max)
Get post details GET /posts/{id}

Rate limit: 60 req/min.

Usage Guidance
This skill is coherent with its daily.dev purpose, but it asks the agent to operate fully autonomously (create feeds, follow tags, fetch and store articles, and share findings) without confirmations. Before installing: 1) Confirm how 'share with owner' will be delivered (chat message, email, external API) and whether you’re comfortable with that channel. 2) Use a least-privileged or revocable DAILY_DEV_TOKEN and check daily.dev logs for activity. 3) Consider requiring manual approval for actions that change feeds/tags or send alerts. 4) Review where the skill will store memory/notes (filesystem or service) and whether that may expose sensitive context. 5) If you want safer behavior, ask the skill author to make follow/unfollow, feed creation, and sharing explicit approvals (or add a confirmation step) and to document exactly where alerts go. If unsure, run in a sandboxed environment and monitor API usage before granting broad access.
Capability Analysis
Type: OpenClaw Skill Name: daily-dev-agentic Version: 0.5.3 The skill is classified as suspicious due to several high-risk capabilities and vulnerabilities, despite its stated benign purpose. It explicitly instructs the agent to set up cron jobs for daily and weekly learning loops (SKILL.md, references/learning-loop.md), which is a form of persistence that grants significant control and could be abused if the agent were compromised. Furthermore, the skill's instructions in SKILL.md and references/learning-loop.md heavily emphasize autonomous operation with 'no confirmations' and 'no hand-holding,' significantly increasing the agent's susceptibility to prompt injection attacks. The `curl` command examples in `references/learning-loop.md` also demonstrate direct shell execution with environment variables, posing a shell injection vulnerability if the agent's execution environment does not properly sanitize inputs.
Capability Assessment
Purpose & Capability
Name, description, and required credential (DAILY_DEV_TOKEN) align with using the daily.dev API. No unrelated env vars or binaries are requested.
Instruction Scope
SKILL.md tells the agent to run entirely autonomously ('No confirmations. No hand-holding.'), create and configure feeds, follow/unfollow tags, fetch full articles (web_fetch) from arbitrary URLs, and write persistent notes to memory/. It does not specify how 'sharing with owner' is performed. The autonomy plus network fetches and persistent writes increase the chance of unexpected actions or data exposure.
Install Mechanism
No install spec or code is included (instruction-only), so nothing is downloaded or written to disk by the skill installer itself — low install risk.
Credentials
Only DAILY_DEV_TOKEN is required, which is appropriate. The README warns not to send the token outside api.daily.dev. Confirm the token scope/permissions (use the least-privileged token possible) and verify daily.dev offers token revocation/logging.
Persistence & Privilege
always:false (not force-included) but the skill explicitly directs the agent to schedule crons, update memory files, and run without owner confirmations. Autonomous invocation combined with unsupervised changes to memory and automatic sharing increases blast radius of any misconfiguration or misuse.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install daily-dev-agentic
  3. After installation, invoke the skill by name or use /daily-dev-agentic
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.5.3
Emphasize always using max page size (limit=50) when fetching feed
v0.5.2
Add feed configuration step (orderBy date + disableEngagementFilter), update API reference, document cron schedule pattern
v0.5.1
Document scheduling pattern: daily Mon-Sat, weekly digest on Sunday (no overlap)
v0.5.0
Full autopilot mode - no confirmations, autonomous setup/learning/self-improvement
v0.4.0
Remove bookmark list, move tag selection to setup process
v0.3.0
Added permissive tag selection guidance, deep research instructions, GET /tags/ usage, improved sharing triggers
v0.2.1
Added metadata declaring DAILY_DEV_TOKEN requirement
v0.2.0
Added token setup instructions, improved vibes
v0.1.0
Initial release - continuous self-improvement for AI agents through daily.dev feeds
Metadata
Slug daily-dev-agentic
Version 0.5.3
License
All-time Installs 3
Active Installs 3
Total Versions 9
Frequently Asked Questions

What is Daily Dev Agentic?

daily.dev Agentic Learning - continuous self-improvement through daily.dev feeds. Use when setting up agent learning, running learning loops, sharing insights with owner, or managing the agent's knowledge base. Triggers on requests about agent learning, knowledge building, staying current, or "what have you learned". It is an AI Agent Skill for Claude Code / OpenClaw, with 1095 downloads so far.

How do I install Daily Dev Agentic?

Run "/install daily-dev-agentic" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Daily Dev Agentic free?

Yes, Daily Dev Agentic is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Daily Dev Agentic support?

Daily Dev Agentic is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Daily Dev Agentic?

It is built and maintained by idoshamun (@idoshamun); the current version is v0.5.3.

💬 Comments