# Fpa Cash Runway

> Use when answering "when do we run out of cash", building a 13-week cash forecast, sizing a credit line, or analyzing near-term liquidity and payment timing in openfpa.

- **Type:** Skill
- **Install:** `agentstack add skill-jeffbrines-openfpa-fpa-cash-runway`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [JeffBrines](https://agentstack.voostack.com/s/jeffbrines)
- **Installs:** 0
- **Category:** [Finance & Payments](https://agentstack.voostack.com/c/finance-and-payments)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [JeffBrines](https://github.com/JeffBrines)
- **Source:** https://github.com/JeffBrines/openfpa/tree/main/skills/fpa-cash-runway
- **Website:** https://www.guiderail.io

## Install

```sh
agentstack add skill-jeffbrines-openfpa-fpa-cash-runway
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Cash Runway (Operate)

## Overview

Build the 13-week direct-method cash forecast - the operator's near-term liquidity view. Schedule the known weekly receipts and disbursements, show the **raw** cash position (no automatic LOC draws), and report the trough and first negative week.

**Core principle:** Show the unfinanced position. A visible shortfall is the whole point - it sizes the credit line.

## When to use

- "When do we run out of money?" / runway questions
- Sizing or stress-testing a working-capital line
- Lumpy near-term cash events (inventory buys, tax, payroll cadence)

## Workflow

1. **Discover the company command.** Run
   `openfpa entrypoint-list  --kind cash`. Use the registered cash
   workflow when one exists.
2. **Build the schedule** as a `Cash13Config`: `opening_cash`, `weeks` (default 13), and `receipts`/`disbursements` lists of `WeeklyFlow(name, amount, start_week, recurrence)`. Recurrence is `once`, `weekly`, or `biweekly`. Model what you actually know: AR collections on their expected weeks, payroll on its cadence, inventory POs on their due dates, quarterly tax.
3. **Forecast**:
   ```python
   import pyfpa
   from pyfpa.io.loaders import load_cash13_config
   weekly = pyfpa.cash13_forecast(load_cash13_config("examples/ridgeline/cash13.yaml"))
   runway = pyfpa.runway_summary(weekly)
   # {'min_cash': -146000.0, 'min_week': 7, 'first_negative_week': 3}
   ```
4. **Interpret** (see **fpa-cfo-judgment**): a negative `min_cash` means "needs a draw of at least this much," not "insolvent." `first_negative_week` is the deadline to act. Size the credit line to the trough plus a buffer.
5. **Report**: trough amount + week, first-negative week, and the recommended line size / action.

## Common mistakes

- Smoothing monthly numbers into weeks instead of scheduling the real lumpy items - the lumps are the signal.
- Auto-covering the shortfall with a draw and hiding the gap. Don't; show it.

## Next

Feed `runway` into **fpa-board-briefing** for the writeup.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [JeffBrines](https://github.com/JeffBrines)
- **Source:** [JeffBrines/openfpa](https://github.com/JeffBrines/openfpa)
- **License:** MIT
- **Homepage:** https://www.guiderail.io

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-jeffbrines-openfpa-fpa-cash-runway
- Seller: https://agentstack.voostack.com/s/jeffbrines
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
