Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

sheltershelter 搜索

Agent Skill

shelter 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,814

周安装

646

GitHub Stars

公开资料未说明

下载量

5,116
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shelter(shelter 搜索)
来源仓库:https://github.com/code-with-brian/shelter
安装命令:
openclaw skills install shelter
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install shelter

简介

shelter 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于财务数据查询、安全支出检查、现金短缺预测及僵尸订阅管理。
  • 通过 clawhub 安装,结合原始 README 核验具体用法,支持联网与文件读写操作。
  • 安装前需确认权限范围和维护状态,避免触发不必要的命令执行或数据访问。
  • 建议在使用前评估是否会涉及敏感信息处理或外部系统交互。

SKILL.md

name
shelter
description
>
version
1.0.0
metadata
openclaw
emoji
\F6E1
requires
env
[SHELTER_API_KEY]
bins
[curl]
primaryEnv
SHELTER_API_KEY
homepage
https://shelter.money

Shelter

Connect to a user's Shelter financial data via the Agent API. All endpoints return JSON. You are a financial coach — interpret the data, don't just dump it.

Authentication

Every request needs two things:

  • Header: X-Shelter-Key: $SHELTER_API_KEY
  • Base URL: $SHELTER_API_URL (default: https://api.shelter.money/agent)

All examples below use these variables. Confirm they're set before making any call.

Decision Tree

Use this to pick the right endpoint for the user's question:

User wants to know...EndpointCost
"How am I doing?" / "Can I spend today?"GET /v1/statusCheap
"When do I run out of money?"GET /v1/runwayCheap
"What does next week look like?"GET /v1/forecastMedium
"Any problems I should know about?"GET /v1/alertsMedium
"Where am I wasting money?"GET /v1/opportunitiesMedium
"Give me the full picture"GET /v1/contextMedium
"Can I afford X?"POST /v1/affordabilityMedium
"Give me today's coaching"GET /v1/coach/dailyMedium
"Help me with [debt/savings/bills]"GET /v1/coach/advice?topic=Medium
Complex/nuanced questionPOST /v1/askExpensive

Always start with the cheapest endpoint that answers the question. Only use /v1/ask when structured endpoints can't answer it.


Endpoints

Quick Checks

These are fast, cached, and cheap. Use them first.

GET /v1/status

The user's current financial health snapshot.

When to use: User asks how they're doing, wants safe-to-spend, or you need a quick health check before answering.

When NOT to use: User wants a multi-day forecast or detailed breakdown.

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/status"

Key response fields:

  • safeToSpend — dollars available after upcoming commitments
  • safeDays — days of runway at current burn rate
  • stressLevellow | medium | high | critical
  • upcomingIncome{ amount, date, source } or null
  • nextCommitment{ name, amount, dueDate } or null
  • confidence — 0-100 data quality score
  • explanation — human-readable summary

How to summarize: Lead with safe-to-spend and stress level. Mention next income if it's within 3 days. Flag low confidence (<50) as "limited data."


GET /v1/runway

How long until the money runs out.

When to use: User asks about runway, burn rate, or when they'll be broke.

When NOT to use: User wants day-by-day detail (use forecast instead).

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/runway"

Key response fields:

  • safeDays — days of remaining runway
  • burnRate — average daily spending (last 30 days)
  • breathingRoom — buffer after commitments
  • nextCrunchDate — ISO date when balance goes negative (or null)
  • nextCrunchAmount — commitments due around the crunch
  • daysUntilCrunch — days until the crunch (or null)
  • explanation — human-readable summary

How to summarize: State days of runway and daily burn rate. If a crunch is coming, warn with the date and amount. If no crunch, reassure them.


Deep Analysis

More detailed endpoints. Use when quick checks aren't enough.

GET /v1/forecast

14-day day-by-day financial projection.

When to use: User asks what the next week/two weeks look like, or wants to see when specific bills hit.

When NOT to use: User just wants today's snapshot (use status).

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/forecast"

Key response fields:

  • forecast[] — array of daily projections: { date, projectedBalance, events[], isCrunch, isTight }
  • summary{ crunchDays, tightDays, lowestBalance, highestBalance }

How to summarize: Highlight crunch days (negative balance) and tight days first. Mention the lowest balance and when it occurs. List significant events (big bills, income).


GET /v1/alerts

Active warnings: zombie subscriptions, spending spikes, upcoming bills.

When to use: User asks what needs attention, or you want to proactively surface problems.

When NOT to use: User is asking about a specific topic (use advice instead).

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/alerts"

Key response fields:

  • alerts[]{ id, type, severity, title, description, amount?, daysUntil?, evidence? }
  • count — total alerts
  • hasCritical — boolean

How to summarize: Critical alerts first, then warnings, then info. Be specific about amounts and dates. If hasCritical is true, lead with urgency.


GET /v1/opportunities

Places the user is wasting money or could save.

When to use: User asks about saving money, zombie subscriptions, or spending optimization.

When NOT to use: User needs a forecast or health check.

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/opportunities"

Key response fields:

  • opportunities[]{ id, type, title, description, potentialSavings, difficulty, actionUrl? }
  • totalPotentialSavings — annual savings if all opportunities are acted on

How to summarize: Lead with total potential savings. List opportunities easiest-first. Include action URLs when available.


GET /v1/context

Full financial overview combining status, alerts, spending insights, and upcoming events.

When to use: User wants the big picture, or you need comprehensive context to answer a complex question.

When NOT to use: A more specific endpoint can answer the question. This is heavy.

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/context"

Key response fields:

  • snapshot{ availableBalance, breathingRoom, daysOfBreathingRoom, upcomingIncome, commitments[] }
  • highlights{ urgentActions, biggestOpportunities, recentWins }
  • alerts[] — same format as alerts endpoint
  • spendingInsights{ summary, byCategory, topMerchants, anomalies }
  • upcomingEvents[]{ type, name, amount, currentDate, priority }

How to summarize: Start with available balance and breathing room. Highlight urgent actions. Mention recent wins (positive reinforcement). Dive into spending insights only if the user asks.


POST /v1/affordability

Simulate whether the user can afford a specific purchase.

When to use: User asks "Can I afford X?" with a specific dollar amount.

When NOT to use: User is asking generally about spending (use status).

curl -s -X POST -H "X-Shelter-Key: $SHELTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"amount": 200, "description": "New headphones"}' \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/affordability"

Key response fields:

  • canAfford — boolean
  • safeToSpendAfter — remaining safe-to-spend after the purchase
  • impactOnRunway — how many fewer days of runway
  • recommendation — AI-generated advice
  • confidence — 0-100

How to summarize: Give a clear yes/no first, then explain the impact on their runway and safe-to-spend.


Coaching

AI-generated coaching messages tailored to the user's financial situation.

GET /v1/coach/daily

Today's personalized coaching message.

When to use: Start of a session, or user asks for their daily update.

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/coach/daily"

Key response fields:

  • messageTypedaily_checkin | alert | celebration | suggestion | warning
  • headline — short headline
  • body — 2-4 sentences of coaching with specific numbers
  • actions[]{ label, actionType, actionTarget }
  • toneencouraging | urgent | celebratory | supportive

How to summarize: Present the headline and body naturally. Suggest the actions conversationally. Match the tone.


GET /v1/coach/advice?topic=

Deep-dive coaching on a specific financial topic.

When to use: User asks for help with a specific area.

Topics: debt, savings, bills, subscriptions, negotiation, general

curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/coach/advice?topic=debt"

Response format: Same as daily coaching (headline, body, actions, tone).

How to summarize: Present the advice naturally. If the user didn't specify a topic, ask which area they want help with or default to general.


Guardian AI Chat

POST /v1/ask

Ask Guardian AI a free-form question about the user's finances. This is the most expensive endpoint — use it as a last resort when structured endpoints can't answer.

When to use: Nuanced questions, planning advice, or follow-ups that need reasoning.

When NOT to use: Questions answerable by structured endpoints above. Always try those first.

curl -s -X POST -H "X-Shelter-Key: $SHELTER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"question": "What should I prioritize right now?"}' \
  "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/ask"

Key response fields:

  • response — Guardian AI's natural language answer
  • confidence — 0-100
  • relatedAlerts[] — IDs of relevant alerts
  • limitRemaining — remaining /ask calls for the day

How to summarize: Present Guardian's response directly. If confidence is low (<50), note the uncertainty. If limitRemaining is low, mention it so the user knows.


Rate Limits

Endpoint groupFree tierPremium tier
Status, Runway60/hour60/hour
Forecast, Alerts, Opportunities, Context, Affordability60/hour60/hour
Coach (daily, advice)60/hour60/hour
Ask (Guardian AI)5/day100/day

Error Codes

CodeMeaningWhat to do
401Invalid or missing API keyCheck SHELTER_API_KEY is set and valid
403Key lacks required scopeUser needs to update key permissions at shelter.money
429Rate limit exceededWait and retry. Check Retry-After header
500Server errorWait a moment and retry

If you get a 401, tell the user to check their API key. Don't retry auth errors.

Setup

  1. Sign up at shelter.money
  2. Connect bank accounts via Plaid (takes ~60 seconds)
  3. Create an Agent API key at shelter.money/settings/api-keys
  4. Set your environment variable:
   export SHELTER_API_KEY="wv_your_key_here"
  1. Test the connection:
   curl -s -H "X-Shelter-Key: $SHELTER_API_KEY" \
     "${SHELTER_API_URL:-https://api.shelter.money/agent}/v1/status"

Security

  • Read-only — Shelter can see transactions and balances but can never move money
  • Scoped API keys — you choose exactly what the key can access
  • No raw bank data — the API returns computed insights (safe-to-spend, alerts), not raw transactions
  • Keys are hashed — the secret is never stored in plain text
  • Audit logging — every API call is logged
  • Instant revocation — disable any key from your settings

Data Reference

For field-by-field documentation of all response shapes, see references/DATA_MODEL.md.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

75.53%
按下载量换算3,864

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills