cre-agent-skills Cursor规则 是 AI Skill Hub 本期精选AI工具之一。综合评分 7.8 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
为商业地产(CRE)承保、尽职调查和财务分析提供AI代理技能包。集成Cursor规则和Claude代码能力,帮助地产专业人士自动化复杂的数据分析和决策流程,提高工作效率。适合房地产投资机构、承保团队和财务分析师使用。
cre-agent-skills Cursor规则 是一款基于 Python 开发的开源工具,专注于 商业地产、AI代理、自动化分析 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
为商业地产(CRE)承保、尽职调查和财务分析提供AI代理技能包。集成Cursor规则和Claude代码能力,帮助地产专业人士自动化复杂的数据分析和决策流程,提高工作效率。适合房地产投资机构、承保团队和财务分析师使用。
cre-agent-skills Cursor规则 是一款基于 Python 开发的开源工具,专注于 商业地产、AI代理、自动化分析 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 克隆仓库 git clone https://github.com/ahacker-1/cre-agent-skills cd cre-agent-skills # 查看安装说明 cat README.md # 按 README 完成环境依赖安装后即可使用
# 查看帮助 cre-agent-skills --help # 基本运行 cre-agent-skills [options] <input> # 详细使用说明请查阅文档 # https://github.com/ahacker-1/cre-agent-skills
# cre-agent-skills 配置说明 # 查看配置选项 cre-agent-skills --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export CRE_AGENT_SKILLS_CONFIG="/path/to/config.yml"
50 CRE skills. No orchestrator required.
Most CRE operators don't need another AI platform.
They need one sharp tool for the thing on their desk right now. The rent roll they're cleaning tonight. The IC memo due Thursday. The lender comparison they've been avoiding for a week. The quarterly LP report due Friday.
So I took my own orchestrator apart and gave it to them.
A while back I shipped a full multi-agent CRE Acquisition Orchestrator — 31 skills wired together across due diligence, underwriting, financing, legal, closing, and document ingestion. Some operators loved it. They wanted the full stack running like a junior analyst team that never sleeps.
But most people I talked to didn't want that.
Not yet.
They had a specific piece of work already in front of them. They didn't want to adopt a whole system. They wanted one good tool for the one thing they were doing right now.
The all-in-one AI platform pitch is a bad fit for how CRE work actually moves. Deals don't wait for you to adopt a pipeline. They land on your desk in pieces.
So I pulled every skill out.
Made each one a clean, standalone file you drop into your own setup — Claude Code, Claude Projects, ChatGPT, Cursor, or any LLM-powered tool.
Then I kept going.
Added a full Industrial pack.
Added a Brokerage Investment Sales pack.
Added an Asset Management pack for post-acquisition operations — budgets, variance, renewals, capex execution, NOI improvement, hold/sell/refi decisions, and quarterly LP reviews.
Built knowledge bases — real references, not placeholders. Every benchmark traces to a cited source.
Grab it. Apache 2.0. No API keys. No signup. Clone, star, come back.
Here's where I want to land.
I want this to be the most helpful AI resource in commercial real estate. Period. Not a product I sell. A growing set of building blocks you pick from. Scaffolding for the work you're already trying to think through.
---
| **50** AI Skills | **15** Knowledge Bases | **9** Claude Code Plugins | **0** Dependencies |
| **7** Due Diligence | **3** Underwriting | **3** Financing | **9** Asset Management v1 |
---
No API keys. No installation. No dependencies. Each .md file works on its own.
Disclaimer: These skill files are educational and informational resources, not production software for making investment decisions. The financial calculations, legal checklists, underwriting models, and analysis outputs are for reference and learning purposes only. Nothing in this repository constitutes financial, legal, investment, or tax advice. The authors and contributors are not liable for any decisions made based on information produced using these skills. Always consult qualified professionals — licensed attorneys, CPAs, commercial real estate brokers, and financial advisors — before making real estate investment decisions. These materials are provided "as is" without warranty of any kind. See LICENSE for full terms.
---
The skills/ directory contains individual .md files — one per analysis task. Use these when you want a single skill in any AI platform.
The claude-code-plugins/ directory packages those same skills into department-level bundles for Claude Code, with a SKILL.md entry point that adds slash command support, automatic routing, and bundled knowledge bases. Use these if you're working in Claude Code and want the full department toolkit.
cp -r cre-agent-skills/claude-code-plugins/cre-due-diligence ~/.claude/skills/
Each plugin is a self-contained directory inside claude-code-plugins/. Install the ones you need:
Copy plugins to your personal Claude Code skills directory:
```bash
cp -r claude-code-plugins/cre-due-diligence ~/.claude/skills/ cp -r claude-code-plugins/cre-underwriting ~/.claude/skills/ cp -r claude-code-plugins/cre-financing ~/.claude/skills/ cp -r claude-code-plugins/cre-legal ~/.claude/skills/ cp -r claude-code-plugins/cre-closing ~/.claude/skills/ cp -r claude-code-plugins/cre-document-ingestion ~/.claude/skills/
cp -r claude-code-plugins/* ~/.claude/skills/
PowerShell equivalent:
powershell git clone https://github.com/ahacker-1/cre-agent-skills.git Set-Location .\cre-agent-skills
New-Item -ItemType Directory -Force "$HOME\.claude\skills" | Out-Null Copy-Item -Recurse .\claude-code-plugins\* "$HOME\.claude\skills\"
After installation, the plugins are available in every Claude Code session. Type `/cre-` and autocomplete will show all installed plugins.
#### Method B: Project-Level Skills (Available in One Project)
If you want skills scoped to a specific deal or project:
bash
cp -r /path/to/cre-agent-skills/claude-code-plugins/cre-due-diligence .claude/skills/ cp -r /path/to/cre-agent-skills/claude-code-plugins/cre-underwriting .claude/skills/
PowerShell equivalent:
powershell New-Item -ItemType Directory -Force .\.claude\skills | Out-Null Copy-Item -Recurse C:\path\to\cre-agent-skills\claude-code-plugins\cre-industrial .\.claude\skills\
Brokerage v1 example:
powershell New-Item -ItemType Directory -Force .\.claude\skills | Out-Null Copy-Item -Recurse C:\path\to\cre-agent-skills\claude-code-plugins\cre-brokerage .\.claude\skills\
Project-level skills take priority over personal skills with the same name. You can commit the `.claude/skills/` directory to git so your team shares the same skills.
#### Method C: Using `--add-dir` (No Installation)
Reference the plugins directory directly without copying:
bash
Different AI platforms have different ways to load skills. Here's how to use them everywhere:
Yes. Every skill file in the skills/ directory is completely self-contained. Open the file, copy the content, paste it into your AI tool. You don't need the full repo.
Include skill content in your system prompt:
import anthropic
skill = open("skills/due-diligence/rent-roll-analyst.md").read()
knowledge = open("knowledge/multifamily-benchmarks.md").read()
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-sonnet-4-20250514",
system=f"{skill}\n\n---\n\nReference Knowledge:\n{knowledge}",
messages=[
{"role": "user", "content": "Analyze this rent roll: [paste data]"}
]
)
---
Step 1: Load skills/due-diligence/rent-roll-analyst.md into your AI tool (or use /cre-due-diligence in Claude Code)
Step 2: Optionally also load knowledge/multifamily-benchmarks.md for market benchmarks
Step 3: Provide your inputs:
Analyze this rent roll for Parkview Apartments, a 200-unit Class B multifamily at 1200 Park Avenue, Austin TX 78701. [paste rent roll data — unit numbers, tenant names, lease dates, monthly rents, deposits, status] Asking rents: Studio $1,050, 1BR $1,250, 2BR $1,550, 3BR $1,850
Step 4: Get back structured analysis — unit summary, occupancy metrics, loss-to-lease calculation, tenant concentration risks, anomalies, revenue projections, and confidence scoring.
``` /cre-document-ingestion I just received the deal package for Riverside Gardens. Here are the files: [upload rent roll, T-12, offering memo]
/cre-document-ingestion Classify this industrial deal package
/cre-industrial Analyze the market for this 180,000 SF shallow-bay asset
/cre-industrial Review the lease roster and rollover risk
/cre-industrial Build the underwriting view
/cre-industrial Write the IC memo
/cre-brokerage Run assignment intake for this suburban office listing
/cre-brokerage Build a broker opinion of value for this property
/cre-brokerage Draft the listing proposal and OM structure
/cre-brokerage Coordinate the buyer process and data room
/cre-brokerage Level the bids and recommend the next step
/cre-asset-management Build the 2027 operating budget from this T-12 and rent roll
/cre-asset-management Analyze the March YTD variance and classify each line
/cre-asset-management Run aging analysis on this rent roll and recommend collection actions
/cre-asset-management Which expiring leases should we push on renewal vs let walk
/cre-asset-management Track this month's value-add capex execution vs plan
/cre-asset-management Give me the prioritized NOI improvement lever list
/cre-asset-management Compare hold vs refi vs sell for this asset at year 3
/cre-asset-management Draft the Q1 Asset Review memo for the LP
---
If you use Claude Code, install a department plugin in one command:
```bash
.md file for the task you needIf you're using an AI coding agent (Claude Code, Cursor, Windsurf, etc.), you can point it at this repo and ask it to set things up for you:
```bash git clone https://github.com/ahacker-1/cre-agent-skills.git cd cre-agent-skills
Each plugin follows this pattern:
cre-{department}/
├── SKILL.md # Entry point — YAML frontmatter + routing logic
├── skills/ # Specialist skill files (the actual analysis prompts)
│ ├── skill-one.md
│ ├── skill-two.md
│ └── ...
└── knowledge/ # Domain knowledge reference files (formulas, benchmarks, criteria)
├── relevant-knowledge-base-1.md
└── relevant-knowledge-base-2.md
The SKILL.md file contains YAML frontmatter that tells Claude Code: - name — the slash command name (e.g., cre-due-diligence) - description — when Claude should automatically consider using this skill - argument-hint — what to show in autocomplete
The body of SKILL.md routes the user's request to the right specialist skill file, which Claude loads on demand. Knowledge base files provide reference data (formulas, benchmarks, criteria) that the specialist skills draw on.
---
```
No. These are plain Markdown files. You load them into whatever AI tool you already use. There are no API calls, no external services, no dependencies.
The repo now includes the original six department plugins plus three additive packs: Industrial v1, Brokerage Investment Sales v1, and Asset Management v1. Each plugin includes a SKILL.md entry point that routes to the right specialist skill based on your request, plus all referenced knowledge base files bundled inside.
| Plugin | Slash Command | Skills Included | Knowledge Bases Included |
|---|---|---|---|
| **Due Diligence** | /cre-due-diligence | 7 skills (rent roll, OpEx, market, physical, environmental, title, tenant credit) | Underwriting Calc, Multifamily Benchmarks, Risk Scoring |
| **Underwriting** | /cre-underwriting | 3 skills (financial model, scenarios, IC memo) | Underwriting Calc, Multifamily Benchmarks |
| **Financing** | /cre-financing | 3 skills (lender outreach, quote comparator, term sheet) | Lender Criteria, Underwriting Calc |
| **Legal** | /cre-legal | 6 skills (PSA, title/survey, estoppels, loan docs, insurance, transfer docs) | Legal Checklist |
| **Closing** | /cre-closing | 2 skills (closing coordinator, funds flow) | Legal Checklist, Underwriting Calc |
| **Asset Management v1** | /cre-asset-management | 9 skills (budgeting, variance, collections, renewals, lease-up, capex, NOI improvement, hold/sell/refi, quarterly asset review memo) | Asset Management Benchmarks, Asset Management Reporting Standards, Renewal Economics |
| **Document Ingestion** | /cre-document-ingestion | 4 skills (classifier, rent roll parser, financials parser, OM parser) | None (self-contained) |
| **Industrial v1** | /cre-industrial | 8 skills (market study, lease roster, lease abstract, tenant credit, physical inspection, underwriting, financing fit, IC memo) | Industrial Benchmarks, Industrial Lease Structures, Industrial Lender Criteria |
| **Brokerage v1** | /cre-brokerage | 8 skills (assignment intake, BOV, listing proposal, OM / teaser, buyer process, bid leveling, negotiation brief, PSA-to-close coordination) | Brokerage Investment Sales Process, Broker Opinion of Value Guidance, Marketing Confidentiality and Buyer Process, Offer Negotiation and Closing Playbook |
claude --add-dir /path/to/cre-agent-skills/claude-code-plugins/cre-due-diligence ```
This loads the plugin for the current session only. Skills from --add-dir directories are detected automatically and support live editing — you can modify skill files during a session without restarting.
Once installed, invoke any plugin with its slash command:
```bash
See Claude Code Plugins above for the full setup guide. This is the best experience — you get slash commands, automatic routing, and bundled knowledge bases.
---
Each plugin's SKILL.md file contains a routing table. When you invoke /cre-due-diligence Analyze this rent roll, Claude reads the routing table, identifies that rent roll analysis maps to skills/rent-roll-analyst.md, loads that file, and follows its instructions. You don't need to know the individual skill file names.
These skills are extracted from the CRE Acquisition Orchestrator — a 31-agent multi-agent system that runs all of these skills together with:
If you want individual tools, you're in the right place. If you want the full automated pipeline, check out the orchestrator.
---
该项目是 CRE Agent Skills,一个 AI-powered 商业房地产分析工具,提供 50 个 CRE 技能,无需使用 orchestrator。它旨在为房地产操作者提供一个方便的工具,帮助他们解决当前的工作任务,例如清洗租金表、撰写 IC 记录、比较贷款方案等。
该项目的功能包括 skills/ 和 claude-code-plugins/ 两个目录。skills/ 目录包含单独的 .md 文件,每个文件对应一个分析任务。claude-code-plugins/ 目录则将这些技能打包成部门级别的插件,包括 SKILL.md 入口点、斜杠命令支持、自动路由和知识库。用户可以根据需要选择使用哪个目录。
安装 CRE Agent Skills 的步骤包括将 claude-code-plugins/ 目录中的插件复制到 Claude Code 的技能目录中。具体步骤如下:
使用 CRE Agent Skills 的步骤包括快速入门、API 使用和配置说明。快速入门包括将技能内容包含在系统提示中,API 使用包括将技能内容包含在系统提示中并使用 Anthropic API。配置说明包括选项 1:Claude Code 插件和选项 2:复制单个技能文件等。
配置 CRE Agent Skills 的步骤包括选项 1:Claude Code 插件和选项 2:复制单个技能文件等。选项 1:Claude Code 插件包括安装部门插件的步骤。选项 2:复制单个技能文件包括复制技能文件、提供输入和获取结构化分析等步骤。
CRE Agent Skills 的 API 结构包括 SKILL.md 入口点、技能文件和知识库。技能文件包括单独的 .md 文件,每个文件对应一个分析任务。知识库包括域知识参考文件,例如公式和基准值等。
CRE Agent Skills 的工作流包括 Claude Code 插件和复制单个技能文件等。Claude Code 插件包括安装部门插件的步骤,复制单个技能文件包括复制技能文件、提供输入和获取结构化分析等步骤。
CRE Agent Skills 的常见问题包括是否需要 API 密钥、如何安装插件和如何使用技能等。答案是:不需要 API 密钥,插件可以直接复制到 Claude Code 的技能目录中,技能可以直接包含在系统提示中并使用 Anthropic API 等。
针对性强的垂直领域AI技能集,整合Cursor工具链,降低CRE分析门槛。文档和社区支持需加强,但应用前景广阔。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,cre-agent-skills Cursor规则 在AI工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | cre-agent-skills |
| 原始描述 | 开源Cursor规则:Commercial real estate AI agent skills for CRE underwriting, due diligence, fina。⭐22 |
| Topics | 商业地产AI代理自动化分析Cursor规则财务建模 |
| GitHub | https://github.com/ahacker-1/cre-agent-skills |
| License | Apache-2.0 |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。