<< All versions
Skill v1.5.0
currentAutomated scan100/100jeremylongshore/claude-code-plugins-plus-skills/procore-observability
+4 new
──Details
PublishedJuly 17, 2026 at 11:18 PM
Content Hashsha256:25a8fb7a6bbd7a85...
Git SHAe1f887db6b7f
Bump Typepatch
──Files
Files (1 file, 1.8 KB)
SKILL.md1.8 KBactive
SKILL.md · 66 lines · 1.8 KB
name: procore-observability description: "Procore observability \u2014 construction management platform integration.\n\ Use when working with Procore API for project management, RFIs, or submittals.\n\ Trigger with phrases like \"procore observability\", \"procore-observability\".\n" allowed-tools: Read, Write, Edit, Bash(npm:), Bash(pip:), Bash(curl:*), Grep version: 1.5.0 license: MIT author: Jeremy Longshore <jeremy@intentsolutions.io> tags:
- saas
- procore
- construction
- project-management
compatibility: Designed for Claude Code, also compatible with Codex and OpenClaw
Procore Observability
Overview
Implementation patterns for Procore observability using the REST API with OAuth2 authentication.
Prerequisites
- Completed
procore-install-authsetup
Instructions
Step 1: API Call Pattern
python
import os, requeststoken_resp = requests.post("https://login.procore.com/oauth/token", data={"grant_type": "client_credentials","client_id": os.environ["PROCORE_CLIENT_ID"],"client_secret": os.environ["PROCORE_CLIENT_SECRET"],})access_token = token_resp.json()["access_token"]headers = {"Authorization": f"Bearer {access_token}"}companies = requests.get("https://api.procore.com/rest/v1.0/companies", headers=headers)print(f"Companies: {len(companies.json())}")
Output
- Procore API integration for observability
Error Handling
| Error | Cause | Solution | |
|---|---|---|---|
| 401 Unauthorized | Expired token | Re-authenticate | |
| 429 Rate Limited | Too many requests | Implement backoff | |
| 403 Forbidden | Insufficient permissions | Check project role |
Resources
Next Steps
See related Procore skills for more workflows.