Skip to content

Commit cfddec7

Browse files
committed
Add Office v1 skill pack and validation
1 parent 4df7a7b commit cfddec7

67 files changed

Lines changed: 7601 additions & 131 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,36 @@ body:
3333
- "Document Ingestion: Rent Roll Parser"
3434
- "Document Ingestion: Financials Parser"
3535
- "Document Ingestion: Offering Memo Parser"
36+
- "Industrial v1: Any Skill"
37+
- "Brokerage v1: Any Skill"
38+
- "Asset Management v1: Any Skill"
39+
- "Office: Office Market and Flight-to-Quality Study"
40+
- "Office: Office Rent Roll and Stacking Plan Analyst"
41+
- "Office: Office Lease Abstract Reviewer"
42+
- "Office: Office Rollover and Occupancy Cost Analyst"
43+
- "Office: Office TI / LC Underwriting Model Builder"
44+
- "Office: Office Tenant Credit and Exposure Analyst"
45+
- "Office: Office Financing Fit"
46+
- "Office: Office IC Memo Writer"
3647
- "Knowledge Base: Underwriting Calculations"
3748
- "Knowledge Base: Risk Scoring Framework"
3849
- "Knowledge Base: Multifamily Benchmarks"
3950
- "Knowledge Base: Lender Criteria"
4051
- "Knowledge Base: Legal Checklist"
52+
- "Knowledge Base: Industrial Benchmarks"
53+
- "Knowledge Base: Industrial Lease Structures"
54+
- "Knowledge Base: Industrial Lender Criteria"
55+
- "Knowledge Base: Brokerage Investment Sales Process"
56+
- "Knowledge Base: Broker Opinion of Value Guidance"
57+
- "Knowledge Base: Marketing Confidentiality and Buyer Process"
58+
- "Knowledge Base: Offer Negotiation and Closing Playbook"
59+
- "Knowledge Base: Asset Management Benchmarks"
60+
- "Knowledge Base: Renewal Economics"
61+
- "Knowledge Base: Asset Management Reporting Standards"
62+
- "Knowledge Base: Office Benchmarks"
63+
- "Knowledge Base: Office Lease Structures"
64+
- "Knowledge Base: Office TI/LC Economics"
65+
- "Knowledge Base: Office Lender Criteria"
4166
- "Claude Code Plugin"
4267
- "README / Documentation"
4368
validations:

.github/ISSUE_TEMPLATE/new-skill-request.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ body:
1414
- Legal
1515
- Closing
1616
- Document Ingestion
17+
- Industrial
18+
- Brokerage Investment Sales
19+
- Asset Management
20+
- Office
1721
- Other / New Department
1822
validations:
1923
required: true

.github/ISSUE_TEMPLATE/skill-improvement.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,36 @@ body:
3333
- "Document Ingestion: Rent Roll Parser"
3434
- "Document Ingestion: Financials Parser"
3535
- "Document Ingestion: Offering Memo Parser"
36+
- "Industrial v1: Any Skill"
37+
- "Brokerage v1: Any Skill"
38+
- "Asset Management v1: Any Skill"
39+
- "Office: Office Market and Flight-to-Quality Study"
40+
- "Office: Office Rent Roll and Stacking Plan Analyst"
41+
- "Office: Office Lease Abstract Reviewer"
42+
- "Office: Office Rollover and Occupancy Cost Analyst"
43+
- "Office: Office TI / LC Underwriting Model Builder"
44+
- "Office: Office Tenant Credit and Exposure Analyst"
45+
- "Office: Office Financing Fit"
46+
- "Office: Office IC Memo Writer"
3647
- "Knowledge Base: Underwriting Calculations"
3748
- "Knowledge Base: Risk Scoring Framework"
3849
- "Knowledge Base: Multifamily Benchmarks"
3950
- "Knowledge Base: Lender Criteria"
4051
- "Knowledge Base: Legal Checklist"
52+
- "Knowledge Base: Industrial Benchmarks"
53+
- "Knowledge Base: Industrial Lease Structures"
54+
- "Knowledge Base: Industrial Lender Criteria"
55+
- "Knowledge Base: Brokerage Investment Sales Process"
56+
- "Knowledge Base: Broker Opinion of Value Guidance"
57+
- "Knowledge Base: Marketing Confidentiality and Buyer Process"
58+
- "Knowledge Base: Offer Negotiation and Closing Playbook"
59+
- "Knowledge Base: Asset Management Benchmarks"
60+
- "Knowledge Base: Renewal Economics"
61+
- "Knowledge Base: Asset Management Reporting Standards"
62+
- "Knowledge Base: Office Benchmarks"
63+
- "Knowledge Base: Office Lease Structures"
64+
- "Knowledge Base: Office TI/LC Economics"
65+
- "Knowledge Base: Office Lender Criteria"
4166
validations:
4267
required: true
4368
- type: textarea

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@
1717
- [ ] No orchestration-specific language (checkpoints, pipelines, deal-id, etc.)
1818
- [ ] All knowledge base references use `knowledge/` paths
1919
- [ ] Formulas and thresholds are sourced from industry data (cite source if adding new ones)
20+
- [ ] Ran `.\scripts\validate-repo.ps1 -Strict`

.github/workflows/validate.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Validate Repo
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
validate:
11+
runs-on: windows-latest
12+
steps:
13+
- name: Check out repository
14+
uses: actions/checkout@v4
15+
16+
- name: Validate skill repository
17+
shell: pwsh
18+
run: .\scripts\validate-repo.ps1 -Strict

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ Thumbs.db
88
*.swp
99
*.swo
1010

11+
# Local agent execution state
12+
.claude/
13+
1114
# Node (in case someone adds tooling later)
1215
node_modules/

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,47 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [1.4.0] - 2026-06-16
8+
9+
### Added
10+
11+
- Office Pack v1 release with 8 new U.S.-focused office acquisition, refinance, recapitalization, lease-up, tenant credit, TI/LC underwriting, financing-fit, and IC memo skills under `skills/office/`
12+
- Office Market and Flight-to-Quality Study
13+
- Office Rent Roll and Stacking Plan Analyst
14+
- Office Lease Abstract Reviewer
15+
- Office Rollover and Occupancy Cost Analyst
16+
- Office TI / LC Underwriting Model Builder
17+
- Office Tenant Credit and Exposure Analyst
18+
- Office Financing Fit
19+
- Office IC Memo Writer
20+
- 4 new office knowledge bases under `knowledge/`
21+
- `office-benchmarks.md` - office market, quality-tier, vacancy, leasing, operating, and flight-to-quality guardrails
22+
- `office-lease-structures.md` - full-service, modified gross, base-year, expense-stop, NNN, BOMA, work-letter, option, and transfer-right guidance
23+
- `office-ti-lc-economics.md` - TI, LC, free rent, downtime, net effective rent, leasing-cost reserve, and renewal-vs-new-lease economics
24+
- `office-lender-criteria.md` - office lender lanes, sizing tests, reserves, recourse posture, and financing red flags
25+
- 12 new companion research notes under `research/office/` plus `research/office/INDEX.md`
26+
- New Claude Code plugin: `cre-office` at `claude-code-plugins/cre-office/`
27+
- Strict repo validation tooling:
28+
- `scripts/validate-repo.ps1`
29+
- `.github/workflows/validate.yml`
30+
31+
### Changed
32+
33+
- Updated README, HOW-TO-USE, SKILL-INDEX, and ROADMAP to position Office v1 as the fourth additive pack after Industrial v1, Brokerage Investment Sales v1, and Asset Management v1
34+
- Updated GitHub issue and PR templates so new sectors and validation are visible in contribution workflows
35+
- Fixed legacy heading drift in document-ingestion and underwriting skill mirrors so root and plugin copies pass strict validation
36+
37+
### New conventions introduced
38+
39+
- README badges are now validated against actual repo counts for skills, knowledge bases, research notes, and Claude Code plugins
40+
- Strict validation checks root/plugin mirror coverage, required skill headings, research indexes, and skill-backed research notes
41+
- Office pack uses an explicit lease-driven framing: market quality, rollover, tenant credit, TI/LC drag, lender selectivity, and IC-level risk synthesis
42+
43+
### Deferred to future releases
44+
45+
- Retail and self-storage sector packs
46+
- Affordable and workforce housing overlays
47+
748
## [1.3.0] - 2026-04-24
849

950
### Added

0 commit comments

Comments
 (0)