Skip to content
Skillv1.0.0

procore-upgrade-migration

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

by jeremylongshore(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from jeremylongshore/tons-of-skills-marketplace (skills/.curated/procore-upgrade-migration/SKILL.md). Install upstream with npx skills add jeremylongshore/tons-of-skills-marketplace --skill procore-upgrade-migration. Copyright stays with the author (MIT).

Procore Upgrade Migration

Overview

Implementation patterns for Procore upgrade migration using the REST API with OAuth2 authentication.

Prerequisites

  • Completed procore-install-auth setup

Instructions

Step 1: API Call Pattern

import os, requests

token_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 upgrade migration

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.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/jeremylongshore-tons-of-skills-marketplace-procore-upgra-a04135/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

jeremylongshore-tons-of-skills-marketplace-procore-upgra-a04135.ocm.jsonjson
{
  "ocm": "1",
  "id": "jeremylongshore-tons-of-skills-marketplace-procore-upgra-a04135",
  "kind": "skill",
  "name": "procore-upgrade-migration",
  "description": "Procore upgrade migration — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like \"procore upgrade migration\", \"procore-upgrade-migration\".",
  "publisher": "jeremylongshore",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "saas",
      "procore",
      "construction",
      "project-management",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Procore upgrade migration — construction management platform integration. Use when working with Procore API for project management, RFIs, or submittals. Trigger with phrases like \"procore upgrade migration\", \"procore-upgrade-migration\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/jeremylongshore/tons-of-skills-marketplace",
      "path": "skills/.curated/procore-upgrade-migration/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/jeremylongshore/tons-of-skills-marketplace/blob/HEAD/skills/.curated/procore-upgrade-migration/SKILL.md",
      "key": "jeremylongshore/tons-of-skills-marketplace/skills/.curated/procore-upgrade-migration/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Bash(npm:*),",
      "Bash(pip:*),",
      "Bash(curl:*),",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Procore Upgrade Migration\n\n## Overview\n\nImplementation patterns for Procore upgrade migration using the REST API with OAuth2 authentication.\n\n## Prerequisites\n\n- Completed `procore-install-auth` setup\n\n## Instructions\n\n### Step 1: API Call Pattern\n\n```python\nimport os, requests\n\ntoken_resp = requests.post(\"https://login.procore.com/oauth/token\", data={\n    \"grant_type\": \"client_credentials\",\n    \"client_id\": os.environ[\"PROCORE_CLIENT_ID\"],\n    \"client_secret\": os.environ[\"PROCORE_CLIENT_SECRET\"],\n})\naccess_token = token_resp.json()[\"access_token\"]\nheaders = {\"Authorization\": f\"Bearer {acces",
  "cost": {
    "context_tokens": 318
  }
}

Fetch it by URL: GET /api/v1/registry/jeremylongshore-tons-of-skills-marketplace-procore-upgra-a04135/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.