ワンクリックで
last30days-skill
AI agent skill for cross-platform topic research and summarization across Reddit, X, YouTube, HN, Polymarket, and the web
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
AI agent skill for cross-platform topic research and summarization across Reddit, X, YouTube, HN, Polymarket, and the web
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | last30days-skill |
| description | AI agent skill for cross-platform topic research and summarization across Reddit, X, YouTube, HN, Polymarket, and the web |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["ai-agent","research","summarization","cross-platform","real-time"],"related_skills":["web-research","youtube-content","polymarket"]}} |
An AI agent skill that researches any topic across multiple platforms and synthesizes a grounded summary with citations.
pip install last30days-skill
from last30days_skill import Last30DaysSkill
skill = Last30DaysSkill()
result = await skill.research("latest developments in AI agents")
print(result.summary)
print(result.sources)
# Research only on specific platforms
result = await skill.research(
"quantum computing breakthroughs",
platforms=["reddit", "twitter", "arxiv"]
)
# Research from the last 7 days instead of 30
result = await skill.research(
"AI regulation news",
days=7
)
# Test installation
python -c "from last30days_skill import Last30DaysSkill; print('OK')"
# Run a simple test
python -c "
import asyncio
from last30days_skill import Last30DaysSkill
async def test():
skill = Last30DaysSkill()
result = await skill.research('test topic', days=1)
print(f'Sources found: {len(result.sources)}')
print(f'Summary length: {len(result.summary)}')
asyncio.run(test())
"