palantir-upgrade-migration

Featured

Upgrade Palantir Foundry SDK versions and handle breaking changes. Use when upgrading foundry-platform-sdk, migrating between API versions, or detecting deprecations in Foundry integrations. Trigger with phrases like "upgrade palantir", "palantir migration", "foundry breaking changes", "update foundry SDK".

AI & Automation 2,266 stars 315 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

# Palantir Upgrade & Migration ## Overview Safely upgrade `foundry-platform-sdk` versions, handle breaking changes, and migrate between Foundry API versions. Includes a step-by-step upgrade checklist and rollback procedure. ## Prerequisites - Current `foundry-platform-sdk` installed - Git for version control - Test suite covering Foundry API calls - Staging environment ## Instructions ### Step 1: Check Current Version and Available Updates ```bash set -euo pipefail pip show foundry-platform-sdk | grep -E "^(Name|Version)" pip index versions foundry-platform-sdk 2>/dev/null | head -3 # Check OSDK version too npm list @osdk/client 2>/dev/null || echo "OSDK not installed" ``` ### Step 2: Review Changelog ```bash # Check GitHub releases for breaking changes python -c " import urllib.request, json url = 'https://api.github.com/repos/palantir/foundry-platform-python/releases?per_page=5' releases = json.loads(urllib.request.urlopen(url).read()) for r in releases: print(f'{r[\"tag_name\"]:12s} {r[\"published_at\"][:10]}') body = r.get('body', '')[:200] if 'BREAKING' in body.upper(): print(f' *** BREAKING CHANGES DETECTED ***') print() " ``` ### Step 3: Create Upgrade Branch and Update ```bash set -euo pipefail git checkout -b upgrade/foundry-sdk-$(date +%Y%m%d) pip install --upgrade foundry-platform-sdk pip show foundry-platform-sdk | grep Version ``` ### Step 4: Run Tests and Fix Breaking Changes ```bash set -euo pipefail pytest tests/ -v --tb=short 2...

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

palantir-migration-deep-dive

Execute major Palantir Foundry migration strategies including data migration, API version upgrades, and platform transitions. Use when migrating data into Foundry, upgrading between API versions, or re-platforming existing integrations. Trigger with phrases like "migrate to palantir", "foundry migration", "palantir data migration", "foundry replatform".

2,266 Updated today
jeremylongshore
AI & Automation Solid

framer-upgrade-migration

Analyze, plan, and execute Framer SDK upgrades with breaking change detection. Use when upgrading Framer SDK versions, detecting deprecations, or migrating to new API versions. Trigger with phrases like "upgrade framer", "framer migration", "framer breaking changes", "update framer SDK", "analyze framer version".

2,266 Updated today
jeremylongshore
AI & Automation Featured

notion-upgrade-migration

Upgrade @notionhq/client SDK versions and migrate between Notion API versions. Use when updating SDK packages, handling breaking changes between API versions, adopting new SDK features like comments API or status properties, or migrating Python notion-client. Trigger with phrases like "upgrade notion SDK", "notion migration", "notion breaking changes", "update notionhq client", "notion API version upgrade", "notion deprecation".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-prod-checklist

Execute Palantir Foundry production deployment checklist and rollback procedures. Use when deploying Foundry integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "palantir production", "deploy foundry", "palantir go-live", "foundry launch checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-common-errors

Diagnose and fix Palantir Foundry common errors and API exceptions. Use when encountering Foundry errors, debugging failed API calls, or troubleshooting transform build failures. Trigger with phrases like "palantir error", "fix palantir", "foundry not working", "debug foundry", "palantir 401 403".

2,266 Updated today
jeremylongshore