procore-core-workflow-a

Featured

Procore core workflow a — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore core workflow a", "procore-core-workflow-a".

AI & Automation 2,274 stars 319 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Procore Core Workflow A ## Overview Build a complete RFI workflow: create, assign, respond, track, and close RFIs using the Procore API. ## Prerequisites - Completed `procore-hello-world` with project access ## Instructions ### Step 1: Create RFI with Full Details ```python rfi_data = { "rfi": { "subject": "HVAC duct routing — Level 2 conflict", "question_body": "The HVAC ducts conflict with structural beams at grid B-4. Need routing alternatives.", "assignee_id": 11111, "rfi_manager_id": 22222, "due_date": "2026-04-15", "priority": "high", "cost_impact": "yes", "schedule_impact": "yes", } } rfi = requests.post( f"{BASE}/projects/{project_id}/rfis", headers={**headers, "Content-Type": "application/json"}, json=rfi_data, ) rfi_id = rfi.json()["id"] ``` ### Step 2: Add Response to RFI ```python response = requests.post( f"{BASE}/projects/{project_id}/rfis/{rfi_id}/responses", headers={**headers, "Content-Type": "application/json"}, json={ "response": { "body": "Route ducts below beam using 8-inch offset. See attached drawing.", } }, ) ``` ### Step 3: Track RFI Status ```python rfi_detail = requests.get(f"{BASE}/projects/{project_id}/rfis/{rfi_id}", headers=headers) data = rfi_detail.json() print(f"RFI #{data['number']}: {data['status']['name']}") print(f" Days open: {data.get('days_open', 0)}") print(f" Responses: {len(data.get('responses', [...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

procore-core-workflow-b

Procore core workflow b — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore core workflow b", "procore-core-workflow-b".

2,274 Updated today
jeremylongshore
AI & Automation Solid

procore-hello-world

Procore hello world — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore hello world", "procore-hello-world".

2,274 Updated today
jeremylongshore
AI & Automation Solid

procore-data-handling

Procore data handling — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore data handling", "procore-data-handling".

2,274 Updated today
jeremylongshore
AI & Automation Solid

procore-ci-integration

Procore ci integration — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore ci integration", "procore-ci-integration".

2,274 Updated today
jeremylongshore
AI & Automation Solid

procore-reference-architecture

Procore reference architecture — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like "procore reference architecture", "procore-reference-architecture".

2,274 Updated today
jeremylongshore