Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Interest Calculation Reference

ASecurity

Calculates and validates pre-petition interest for U.S. bankruptcy creditor proofs of claim. Triggers on "proof of claim", "pre-petition interest", "bankruptcy claim", "interest worksheet", "claim amount", or when drafting, auditing, or objecting to claim filings.

22 stars
0 votes
0 copies
0 views
Added 9/20/2026
documentationgoapidocumentation

Works with

api

Security Analysis

A100/100

Scanned 9/20/2026

Install to Claude Code

$npx -y skills add lev-os/agents --skill interest-calculation-reference --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Interest Calculation Reference?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Interest Calculation Reference
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/lev-os-interest-calculation-reference/badge)](https://www.skillsdirectory.com/skills/lev-os-interest-calculation-reference)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: interest-calculation-reference
description: Calculates and validates pre-petition interest for U.S. bankruptcy creditor proofs of claim. Triggers on "proof of claim", "pre-petition interest", "bankruptcy claim", "interest worksheet", "claim amount", or when drafting, auditing, or objecting to claim filings.
tags:
  - analysis
  - checklist
  - litigation
---

# Bankruptcy Interest Calculation Reference

Workflow for pre-petition interest calculations and charge inclusion decisions on creditor proofs of claim.

## Prerequisites

Gather before starting:
- Petition date and case number
- Governing loan/credit documents
- Chronological payment history and balance ledger
- Contract or judgment terms (rate, accrual method)
- State prejudgment statutory rate (if no contract/judgment rate)
- Collateral valuation and lien status (secured claims only)
- Fee provisions and statutory fee authorities
- Verified date-diff method (actual calendar days)

## Quick Start

1. Collect core inputs (principal, rate, dates, day-count basis).
2. Determine rate source using priority hierarchy.
3. Calculate pre-petition interest using the formula.
4. Apply charge inclusion gate to fees.
5. Assemble worksheet and run validation checklist.

## Core Inputs

| Field | Capture |
|---|---|
| Principal Balance | Outstanding principal as of last payment or cutoff |
| Last Payment/Accrual Date | Date of last payment or latest principal application |
| Petition Date | Filing date |
| Annual Rate | Decimal or percentage |
| Rate Source | Contract / Judgment / State statutory / Federal |
| Day-Count Basis | 365, 360, or 30/360 |
| Claim Type | Unsecured, Secured, Priority |
| Charges Included | Late fees, NSF fees, attorney fees, other |

## Formulas

- `Pre-petition Interest = Principal × Rate × (Accrual Days ÷ Day-Count-Basis)`
- `Per Diem = (Principal × Rate) ÷ Day-Count-Basis`
- `Total Claim = Principal + Pre-petition Interest + Allowed Other Charges`

## Rate Source Priority

| Priority | Source | Rule |
|---|---|---|
| 1 | Contract | Exact contractual rate and methodology |
| 2 | Judgment | Judgment rate for pre-petition judgment claims |
| 3 | State statutory | Applicable state prejudgment rate if no higher source |
| 4 | Federal §1961 | Only when judgment-rate path designates it as fallback |

## Post-Petition Interest Rules

| Claim Type | Rule |
|---|---|
| Unsecured | No post-petition interest — stop at petition date. Solvent-debtor exception only if affirmatively supported [VERIFY] |
| Secured | Only if oversecured under §506(b); limited by equity cushion |
| Priority | Usually none — confirm statutory priority language |

## Charge Inclusion Gate

Each charge must be: (1) contract- or statute-authorized, (2) accrued/assessed pre-petition, and (3) documented.

- **Late/penalty fees** — must be reasonable and non-punitive
- **NSF/returned-item fees** — must be actually assessed pre-petition
- **Attorney fees** — must have contract or statutory authorization
- Attach supporting documentation to every charge line item

## Worksheet Template

```text
BANKRUPTCY INTEREST CALCULATION WORKSHEET
Debtor: ____________   Case No.: ____________
Creditor: ____________  Account No.: __________

1) Principal
   Original principal:                    $ ________
   Payments to cutoff:                   -$ ________
   Principal as of [Accrual Date]:        $ ________

2) Interest
   Annual rate: ________%
   Rate source: [ ] Contract [ ] Judgment [ ] State [ ] Federal
   Day-count:   [ ] Actual/365 [ ] Actual/360 [ ] 30/360
   Accrual period: [From] __ / [To] __ / Days ____
   Per diem:                              $ ________
   Pre-petition interest:                 $ ________

3) Other Charges (only if supported)
   Late fees:                             $ ________
   NSF/other fees:                        $ ________
   Attorney fees (pre-petition):          $ ________
   Other allowed charges:                 $ ________
   Charges total:                         $ ________

4) Claim Summary
   Principal:                             $ ________
   Pre-petition interest:                 $ ________
   Other charges:                         $ ________
   TOTAL CLAIM AT PETITION:               $ ________

Documentation: [ ] Rate clause [ ] Payment ledger
[ ] Day-count rationale [ ] Charge authorization [ ] Signature/date
```

## Validation Checklist

Run before filing:

| Error | Fix |
|---|---|
| Wrong principal baseline | Reconcile to balance after last credited payment |
| Wrong day-count basis | Use contract or documented basis |
| Wrong compounding method | Match contract; default to simple interest |
| Unauthorized fees included | Remove; note authority required |
| Missing rate source | Document statute, contract clause, or judgment paragraph |
| Interest calculated past petition date | Cap unsecured/general claims at petition date |

## Pitfalls

- Convert percentages to decimals only inside formulas; preserve units elsewhere.
- Never mix post-petition accrual into pre-petition totals.
- Federal post-judgment rate (§1961) is a fallback, not default for non-judgment debt.
- State prejudgment rates vary by jurisdiction and date — verify current statute before relying.
- Flag uncertain statutory questions (e.g., solvent-debtor treatment) with [VERIFY] and venue-specific authority.

## Cross-References

- `@bankruptcy-proof-of-claim`
- `@bankruptcy-collateral-valuation-reference`
- `@bankruptcy-objection-to-proof-of-claim`
- `@commercial-loan-analysis`

## Key Statutes

- 11 U.S.C. §502(b)(2) — unmatured interest
- 11 U.S.C. §506(b) — post-petition interest (oversecured)
- 28 U.S.C. §1961 — post-judgment interest
- Applicable state prejudgment interest statute (verify per jurisdiction)

---

**Key changes made:**

- **Frontmatter**: Tightened description to lead with what it does and include clear trigger guidance in third person
- **Structure**: Added Quick Start section for rapid orientation; reorganized from numbered "Output Structure / Process" subsections into named semantic sections
- **Conciseness**: Removed the redundant general `Interest` formula (kept only the pre-petition variant), collapsed the three-column post-petition table to two columns, condensed the Guidelines section into a focused Pitfalls list
- **Worksheet**: Streamlined — removed decorative separator lines, compressed the documentation checklist to a single line
- **References → Key Statutes**: Renamed for clarity and brevity
- **All domain accuracy preserved**: Rate priority hierarchy, §506(b) rules, charge gate logic, validation checklist, and [VERIFY] flags are intact

Attribution

lev-oslev-os
View sourceMore from lev-os →
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots · $299/mo · GSC-verified traffic · sponsors can never buy grades.

See placements

Related Skills

Context Fundamentals

Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.

179001 votes

release-notes

Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.

1301 votes

docs-style-guide

Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.

11 votes

Caveman Help

Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman".

1023330 votes

How It Works

Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".

929660 votes
View all in documentation →