Create budget or forecast with documented assumptions and approval workflow
Creates budgets or forecasts with documented assumptions and approval workflow.
/plugin marketplace add lerianstudio/ring/plugin install ring-finance-team@ring[type] [options]Create budget or forecast with documented assumptions and approval workflow.
/create-budget [type] [options]
| Argument | Required | Description |
|---|---|---|
type | Yes | Budget type: annual, departmental, project, forecast |
| Option | Description | Example |
|---|---|---|
--period | Budget period | --period "FY2025" |
--methodology | Budgeting methodology | --methodology "zero-based" |
--department | Specific department | --department "Engineering" |
--template | Use template file | --template docs/budget-template.xlsx |
--prior | Prior period reference | --prior docs/budget-2024.xlsx |
# Annual operating budget
/create-budget annual --period FY2025
# Departmental budget
/create-budget departmental --department "Sales" --period FY2025
# Zero-based budget
/create-budget annual --methodology zero-based --period FY2025
# Rolling forecast update
/create-budget forecast --period "Q2-Q4 2025"
# Using prior year reference
/create-budget annual --period FY2025 --prior docs/budget-2024.xlsx
| Type | Description |
|---|---|
annual | Full fiscal year operating budget |
departmental | Single department budget |
project | Project-specific budget |
forecast | Rolling or updated forecast |
capital | Capital expenditure budget |
| Method | Description |
|---|---|
incremental | Prior year + adjustments |
zero-based | Every item justified from zero |
driver-based | Tied to activity drivers |
top-down | Allocate from corporate total |
bottom-up | Aggregate from detail |
The command produces a comprehensive budget including:
| Command | Description |
|---|---|
/analyze-financials | Financial analysis |
/build-model | Build financial model |
This command MUST load the skill for complete workflow execution.
Use Skill tool: budget-creation
The skill contains the complete 6-phase workflow with:
Pass the following context to the skill:
| Parameter | Value |
|---|---|
type | $1 (first argument: annual, departmental, project, forecast) |
--period | If provided, budget period |
--methodology | If provided, budgeting methodology |
--department | If provided, specific department |
--template | If provided, template file path |
--prior | If provided, prior period reference |
After loading skill and before building budget, you MUST ask:
AskUserQuestion:
questions:
- question: "What is the budget methodology?"
header: "Methodology"
options:
- label: "Incremental"
description: "Prior year + adjustments"
- label: "Zero-Based"
description: "Every item justified from zero"
- label: "Driver-Based"
description: "Tied to activity drivers"
- label: "Top-Down"
description: "Allocate from corporate total"
- label: "Bottom-Up"
description: "Aggregate from detail"
- question: "What are the key constraints or targets?"
header: "Constraints"
freeform: true
Do NOT skip this. Budget type alone does not define methodology.
See skill budget-creation for full details. Key rules: