---
title: "Agent Builder Stack"
description: "Build agents with clear APIs, docs, prompts, and release checks."
canonical: "https://hub.ironclaw.com/collections/agent-builder"
markdown: "https://hub.ironclaw.com/collections/agent-builder.md"
type: "collection"
entries: 18
---

# Agent Builder Stack

> Everything needed to spec, wire, test, and ship a repo-backed agent.

## Outcome

Build agents with clear APIs, docs, prompts, and release checks.

## Included Skills and Tools

- [Chief Of Staff](https://hub.ironclaw.com/marketplace/chief-of-staff.md) — Cross-platform executive operations skill for the IronClaw agent. The agent operates as chief of staff to a C-suite executive, coordinating across email, calendar, code, projects, and outbound partner messaging via Google Workspace, GitHub, GitLab, ClickUp, and WhatsApp. Designed for one-click deploy demos to enterprise partners (financial services, banking groups, software firms) with proper OAuth and System User credentials provisioned at deploy time. Pairs prose guidance for the LLM with deterministic Python scripts in `python_scripts/` for the canonical recurring workflows.
- [Microsoft 365 Workflow](https://hub.ironclaw.com/marketplace/microsoft-365-workflow.md) — Microsoft 365 business workflow patterns for the IronClaw agent. Covers Outlook email, Excel data operations, Teams channel communication, Word and PowerPoint document generation, and SharePoint and OneDrive file management via Microsoft Graph.
- [Pr Triage Digest](https://hub.ironclaw.com/marketplace/pr-triage-digest.md) — Triage open GitHub pull requests across one or more repositories and produce a prioritized, bucketed review digest. Scores each PR on CI status, mergeability, staleness, size, and review state, then groups them into Blockers, Quick wins, First contributors, Aging, and Normal so the reviewer knows what to look at first instead of paging through the GitHub UI. Read-only — never comments, labels, closes, or merges.
- [Gitlab](https://hub.ironclaw.com/marketplace/gitlab.md) — GitLab integration via the v4 REST API. Projects (list, get, create), issues (list, get, create, update, comment), merge requests (list, get, create, update, comment, approve, merge), branches (list, get, create, delete), files (read, create or update, delete), search (projects, issues, blobs), pipelines (list, get, jobs), and current_user. OAuth 2.0 user-context authentication against gitlab.com with host-managed token refresh.
- [Voulai Trading](https://hub.ironclaw.com/marketplace/voulai-trading.md) — Trade a real on-chain crypto portfolio through the Voulai agent API. One per-strategy API key lets you read market data, run backtests, fund the strategy with a deposit address, and execute buys and sells that settle gaslessly through NEAR Intents into a custody wallet. You can put money in and trade it; you can never withdraw it — cashing out stays with the owner. Every call you make is logged and shown to them.
- [Attio](https://hub.ironclaw.com/marketplace/attio.md) — Attio CRM API v2 read and write access. Queries, fetches, creates, updates, asserts, and deletes records for any object (people, companies, deals, users, workspaces, or custom), reads the object catalog and per-object attribute schemas, lists lists and queries list entries, and lists and creates notes and tasks. Exposes a raw attio_request action for any v2 endpoint bounded by the same host allowlist. Authenticated with an Attio workspace API key presented as a Bearer header against api.attio.com.
- [Bitcoin Reddit Sentiment](https://hub.ironclaw.com/marketplace/bitcoin-reddit-sentiment.md) — Reads the 25 most recent Bitcoin posts from r/cryptocurrency via the public RSS feed (no API key — Reddit's JSON API is blocked but RSS works), classifies each post's sentiment as positive, negative, or neutral from its title and description, and returns a Telegram summary with the counts and an overall mood label: BULLISH if positives lead by 5+, BEARISH if negatives lead by 5+, otherwise MIXED, plus the most striking post it found.
- [Clickup](https://hub.ironclaw.com/marketplace/clickup.md) — ClickUp integration via the v2 REST API. Workspaces (list), spaces (list, get), folders (list, get), lists (list, get, create, list folderless), tasks (list, list filtered cross-list, get, create, update, delete, tag, untag), task comments (list, create), comments (update, delete), time tracking (list, current running), goals (list, get), and the authenticated user. OAuth 2.0 user-context authentication against app.clickup.com with non-expiring tokens.
- [Competitor Page Watcher](https://hub.ironclaw.com/marketplace/competitor-page-watcher.md) — Watches specific web pages and reports the day anything changes — pricing, job postings, product updates. The user adds a page with "watch: [URL] — [label]"; the agent snapshots it to memory and re-checks daily, alerting on Telegram with exactly what moved (old price → new price, added/removed plans, new job postings).
- [Crypto Hypothesis Tester](https://hub.ironclaw.com/marketplace/crypto-hypothesis-tester.md) — Tests a market theory the user defines, automatically, over time. The user states a hypothesis like "when ETH rises more than 3% in 24h, NEAR rises within the next 48h"; the agent checks prices every 6 hours, logs each trigger event, and 48h later checks whether the predicted outcome held — building a confirmed/refuted tally and a hit rate. Every Sunday it sends a Telegram report with the running results and a verdict (promising / inconclusive / rejected), so a hunch becomes evidence instead of a feeling.
- [Crypto Trade Journal](https://hub.ironclaw.com/marketplace/crypto-trade-journal.md) — Logs the trades the user tells it about and gives live P&L on demand. The user says something like "bought 500 NEAR at $3.20" or "sold 200 SOL at $145"; the agent appends it to a persistent journal in memory. On "show P&L" it reconstructs each open position, works out the size-weighted average entry, fetches current prices from CoinGecko, and shows cost basis, current value, and profit/loss per token and overall. The journal survives restarts.
- [Decision Journal](https://hub.ironclaw.com/marketplace/decision-journal.md) — Logs the user's decisions in memory and confronts them with the outcome later, so they actually learn from their own track record instead of remembering only their wins. The user logs a decision with "decision: [what you decided] | check in [timeframe]"; the agent stores it and, on the follow-up date, sends the exact decision back on Telegram and asks for a verdict. Verdicts build a running track record (right / wrong / mixed) and surface patterns over time.
- [English Vocabulary Builder Ru](https://hub.ironclaw.com/marketplace/english-vocabulary-builder-ru.md) — Builds the user's English vocabulary with spaced repetition, with Russian translations. The user adds a word with "word: [word]" and the agent itself fills in the Russian translation and a natural English example sentence — no manual card writing — then schedules it on a fixed review ladder (1 → 3 → 8 → 20 → 50 → 125 → 300 days). Each morning it quizzes the words due that day, grades the answers by meaning, and reschedules each word: a correct answer moves it up the ladder, a wrong one resets it to tomorrow.
- [Etherscan](https://hub.ironclaw.com/marketplace/etherscan.md) — Allows queries to the Etherscan v2 API across 60+ EVM-compatible networks. Retrieves native wallet balances, transaction histories, ERC-20/721/1155 token transfer events, contract ABIs/source codes, and execution statuses.
- [Evm Rpc](https://hub.ironclaw.com/marketplace/evm-rpc.md) — EVM JSON-RPC integration. Read account balances, contract code and storage, call view functions, fetch blocks, transactions, receipts, and event logs. Built-in chain shortcuts for Ethereum mainnet, Polygon, Arbitrum, Optimism, Base, BNB Chain, and Avalanche; accepts custom RPC URLs for any EVM-compatible network. Read-only (no transaction signing).
- [Free Trial Guardian](https://hub.ironclaw.com/marketplace/free-trial-guardian.md) — Tracks free trials in memory and warns the user on Telegram before they get charged. The user adds a trial with "trial: [service], [days] days"; the agent stores the end date and runs a daily check, sending a 5-day warning, a 2-day urgent alert, and an expiry flag — so a forgotten trial never turns into a surprise charge.
- [Habit Streak Keeper](https://hub.ironclaw.com/marketplace/habit-streak-keeper.md) — Tracks the user's daily habits as streaks in memory and nudges them on Telegram in the evening when a live streak is about to break. The user marks a habit done with "did: [habit]" (e.g. "did: gym"); the agent counts consecutive days per habit, and each evening pings any habit done yesterday but not yet today — so a 12-day streak doesn't quietly die from one forgotten day. Stays silent when every active habit is already done for the day.
- [Microsoft 365](https://hub.ironclaw.com/marketplace/microsoft-365.md) — Microsoft Graph integration. 14 actions across Outlook, Excel, Teams, OneDrive, SharePoint, Calendar, plus Word and PowerPoint document generation. OAuth via Microsoft Entra ID.

## Links

- [HTML page](https://hub.ironclaw.com/collections/agent-builder)
- [Marketplace index](https://hub.ironclaw.com/marketplace.md)
