Merge commit '3779dc9cc709440113b298fe8b11d063cf8497d1'

This commit is contained in:
Alexa Amundson
2025-11-28 23:10:26 -06:00
29 changed files with 6901 additions and 1 deletions

View File

@@ -0,0 +1,62 @@
---
name: New Agent Proposal
about: Propose a new agent for the finance pack
title: '[AGENT] '
labels: ['type:agent', 'pack:finance', 'status:ready']
assignees: ''
---
## Agent Name
<!-- Proposed agent name (e.g., agent.tax-calculator) -->
## Agent Role
<!-- What is the primary role/responsibility of this agent? -->
## Skills
<!-- List the key skills/capabilities this agent will have -->
-
-
-
## Use Cases
<!-- Describe the main use cases for this agent -->
## Dependencies
<!-- External services or APIs this agent will integrate with -->
- [ ] Stripe
- [ ] QuickBooks
- [ ] Plaid
- [ ] Other (specify):
## Permissions Required
<!-- What permissions does this agent need? -->
- [ ] read:financial_data
- [ ] write:reports
- [ ] admin:budgets
- [ ] Other (specify):
## Integration Points
<!-- Which repos/packs will this agent integrate with? -->
## Implementation Notes
<!-- Technical details, architecture considerations, etc. -->
## Registry Entry
<!-- Proposed agents.json entry -->
```json
{
"id": "agent.",
"display_name": "",
"pack_id": "pack.finance",
"role": "",
"skills": [],
"repos": ["blackroad-os-pack-finance"],
"environments": ["railway"],
"permissions": {
"github": "read",
"railway": "read"
},
"status": "active"
}
```

View File

@@ -31,3 +31,45 @@ assignees: ''
## Possible Fix
<!-- If you have ideas on how to fix this -->
name: Finance Pack Bug Report
about: Report a bug in the finance pack
title: '[BUG] '
labels: ['type:bug', 'pack:finance', 'status:ready']
assignees: ''
---
## Bug Description
<!-- A clear and concise description of the bug -->
## Affected Agent
<!-- Which agent is affected? -->
- [ ] budgeteer
- [ ] reconcile
- [ ] forecast
- [ ] audit
## Steps to Reproduce
1.
2.
3.
## Expected Behavior
<!-- What should happen -->
## Actual Behavior
<!-- What actually happens -->
## Environment
- Python version:
- Node.js version:
- OS:
## Error Messages
<!-- Include any error messages or logs -->
```
[paste error messages here]
```
## Additional Context
<!-- Any other information about the problem -->

View File

@@ -24,3 +24,41 @@ assignees: ''
## Additional Context
<!-- Screenshots, links, related issues -->
name: Finance Pack Feature Request
about: Propose a new feature or agent for the finance pack
title: '[FEATURE] '
labels: ['type:feature', 'pack:finance', 'status:ready']
assignees: ''
---
## Feature Description
<!-- A clear and concise description of the feature -->
## Pack Agent
<!-- Which agent(s) does this feature relate to? -->
- [ ] budgeteer
- [ ] reconcile
- [ ] forecast
- [ ] audit
- [ ] new agent (specify):
## Use Case
<!-- Describe the use case or problem this feature solves -->
## Proposed Solution
<!-- How should this feature work? -->
## Alternatives Considered
<!-- What other approaches did you consider? -->
## Integration Points
<!-- Which other packs/repos does this integrate with? -->
- [ ] pack.infra-devops
- [ ] pack.research-lab
- [ ] blackroad-os-api
- [ ] blackroad-os-web
- [ ] other (specify):
## Additional Context
<!-- Any other information, screenshots, or examples -->