skills$openclaw/pltr-cli
anjor6.8k

by anjor

pltr-cli – OpenClaw Skill

pltr-cli is an OpenClaw Skills integration for data analytics workflows. Helps you work with Palantir Foundry using the pltr CLI. Use this when you need to query datasets, manage orchestration builds, work with ontologies, run SQL queries, manage folders/spaces/projects, copy datasets, or perform admin operations in Foundry. Triggers: Foundry, pltr, dataset, SQL query, ontology, build, schedule, RID.

6.8k stars9.0k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namepltr-cli
descriptionHelps you work with Palantir Foundry using the pltr CLI. Use this when you need to query datasets, manage orchestration builds, work with ontologies, run SQL queries, manage folders/spaces/projects, copy datasets, or perform admin operations in Foundry. Triggers: Foundry, pltr, dataset, SQL query, ontology, build, schedule, RID. OpenClaw Skills integration.
owneranjor
repositoryanjor/pltr-cli
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @anjor/pltr-cli
last updatedFeb 7, 2026

Maintainer

anjor

anjor

Maintains pltr-cli in the OpenClaw Skills directory.

View GitHub profile
File Explorer
22 files
.
reference
admin-commands.md
5.6 KB
aip-agents-commands.md
5.4 KB
connectivity-commands.md
5.6 KB
dataset-commands.md
4.2 KB
filesystem-commands.md
8.8 KB
functions-commands.md
6.5 KB
language-models-commands.md
7.0 KB
mediasets-commands.md
5.6 KB
models-commands.md
5.5 KB
ontology-commands.md
4.0 KB
orchestration-commands.md
5.0 KB
quick-start.md
2.4 KB
sql-commands.md
3.5 KB
streams-commands.md
7.4 KB
workflows
data-analysis.md
5.0 KB
data-pipeline.md
6.0 KB
permission-management.md
6.3 KB
_meta.json
279 B
README.md
1.7 KB
SKILL.md
6.5 KB
SKILL.md

name: pltr-cli description: Helps you work with Palantir Foundry using the pltr CLI. Use this when you need to query datasets, manage orchestration builds, work with ontologies, run SQL queries, manage folders/spaces/projects, copy datasets, or perform admin operations in Foundry. Triggers: Foundry, pltr, dataset, SQL query, ontology, build, schedule, RID.

pltr-cli: Palantir Foundry CLI

This skill helps you use the pltr-cli to interact with Palantir Foundry effectively.

Compatibility

  • Skill version: 1.1.0
  • pltr-cli version: 0.12.0+
  • Python: 3.9, 3.10, 3.11, 3.12
  • Dependencies: foundry-platform-sdk >= 1.69.0

Overview

pltr-cli is a comprehensive CLI with 100+ commands for:

  • Dataset operations: Get info, list files, download files, manage branches and transactions
  • SQL queries: Execute queries, export results, manage async queries
  • Ontology: List ontologies, object types, objects, execute actions and queries
  • Orchestration: Manage builds, jobs, and schedules
  • Filesystem: Folders, spaces, projects, resources
  • Admin: User, group, role management
  • Connectivity: External connections and data imports
  • MediaSets: Media file management
  • Language Models: Interact with Anthropic Claude models and OpenAI embeddings
  • Streams: Create and manage streaming datasets, publish real-time data
  • Functions: Execute queries and inspect value types
  • AIP Agents: Manage AI agents, sessions, and versions
  • Models: ML model registry for model and version management

Critical Concepts

RID-Based API

The Foundry API is RID-based (Resource Identifier). Most commands require RIDs:

  • Datasets: ri.foundry.main.dataset.{uuid}
  • Folders: ri.compass.main.folder.{uuid} (root: ri.compass.main.folder.0)
  • Builds: ri.orchestration.main.build.{uuid}
  • Schedules: ri.orchestration.main.schedule.{uuid}
  • Ontologies: ri.ontology.main.ontology.{uuid}

Users must know RIDs in advance (from Foundry web UI or previous API calls).

Authentication

Before using any command, ensure authentication is configured:

# Configure interactively
pltr configure configure

# Or use environment variables
export FOUNDRY_TOKEN="your-token"
export FOUNDRY_HOST="foundry.company.com"

# Verify connection
pltr verify

Output Formats

All commands support multiple output formats:

pltr <command> --format table    # Default: Rich table
pltr <command> --format json     # JSON output
pltr <command> --format csv      # CSV format
pltr <command> --output file.csv # Save to file

Profile Selection

Use --profile to switch between Foundry instances:

pltr <command> --profile production
pltr <command> --profile development

Reference Files

Load these files based on the user's task:

Task TypeReference File
Setup, authentication, getting startedreference/quick-start.md
Dataset operations (get, files, branches, transactions)reference/dataset-commands.md
SQL queriesreference/sql-commands.md
Builds, jobs, schedulesreference/orchestration-commands.md
Ontologies, objects, actionsreference/ontology-commands.md
Users, groups, roles, orgsreference/admin-commands.md
Folders, spaces, projects, resources, permissionsreference/filesystem-commands.md
Connections, importsreference/connectivity-commands.md
Media sets, media itemsreference/mediasets-commands.md
Anthropic Claude models, OpenAI embeddingsreference/language-models-commands.md
Streaming datasets, real-time data publishingreference/streams-commands.md
Functions queries, value typesreference/functions-commands.md
AIP Agents, sessions, versionsreference/aip-agents-commands.md
ML model registry, model versionsreference/models-commands.md

Workflow Files

For common multi-step tasks:

WorkflowFile
Data exploration, SQL analysis, ontology queriesworkflows/data-analysis.md
ETL pipelines, scheduled jobs, data qualityworkflows/data-pipeline.md
Setting up permissions, resource roles, access controlworkflows/permission-management.md

Common Commands Quick Reference

# Verify setup
pltr verify

# Current user info
pltr admin user current

# Execute SQL query
pltr sql execute "SELECT * FROM my_table LIMIT 10"

# Get dataset info
pltr dataset get ri.foundry.main.dataset.abc123

# List files in dataset
pltr dataset files list ri.foundry.main.dataset.abc123

# Download file from dataset
pltr dataset files get ri.foundry.main.dataset.abc123 "/path/file.csv" "./local.csv"

# Copy dataset to another folder
pltr cp ri.foundry.main.dataset.abc123 ri.compass.main.folder.target456

# List folder contents
pltr folder list ri.compass.main.folder.0  # root folder

# Search builds
pltr orchestration builds search

# Interactive shell mode
pltr shell

# Send message to Claude model
pltr language-models anthropic messages ri.language-models.main.model.xxx \
    --message "Explain this concept"

# Generate embeddings
pltr language-models openai embeddings ri.language-models.main.model.xxx \
    --input "Sample text"

# Create streaming dataset
pltr streams dataset create my-stream \
    --folder ri.compass.main.folder.xxx \
    --schema '{"fieldSchemaList": [{"name": "value", "type": "STRING"}]}'

# Publish record to stream
pltr streams stream publish ri.foundry.main.dataset.xxx \
    --branch master \
    --record '{"value": "hello"}'

# Execute a function query
pltr functions query execute myQuery --parameters '{"limit": 10}'

# Get AIP Agent info
pltr aip-agents get ri.foundry.main.agent.abc123

# List agent sessions
pltr aip-agents sessions list ri.foundry.main.agent.abc123

# Get ML model info
pltr models model get ri.foundry.main.model.abc123

# List model versions
pltr models version list ri.foundry.main.model.abc123

Best Practices

  1. Always verify authentication first: Run pltr verify before starting work
  2. Use appropriate output format: JSON for programmatic use, CSV for spreadsheets, table for readability
  3. Use async for large queries: pltr sql submit + pltr sql wait for long-running queries
  4. Export results: Use --output to save results for further analysis
  5. Use shell mode for exploration: pltr shell provides tab completion and history

Getting Help

pltr --help                    # All commands
pltr <command> --help          # Command help
pltr <command> <sub> --help    # Subcommand help
README.md

pltr-cli Claude Code Skill

This directory contains a Claude Code skill for working with Palantir Foundry using the pltr-cli.

Installation

Use Within This Repository

The skill is automatically available when using Claude Code in this repository.

Install Globally

cp -r claude_skill ~/.claude/skills/pltr

Structure

claude_skill/
├── SKILL.md                    # Main skill definition
├── reference/                  # Command references (loaded on-demand)
│   ├── quick-start.md         # Setup and authentication
│   ├── dataset-commands.md    # Dataset operations
│   ├── sql-commands.md        # SQL queries
│   ├── orchestration-commands.md  # Builds, jobs, schedules
│   ├── ontology-commands.md   # Ontology operations
│   ├── admin-commands.md      # User/group management
│   ├── filesystem-commands.md # Folders, spaces, projects
│   ├── connectivity-commands.md   # Connections, imports
│   └── mediasets-commands.md  # Media operations
└── workflows/                  # Common patterns
    ├── data-analysis.md       # Analysis workflows
    ├── data-pipeline.md       # ETL and pipelines
    └── permission-management.md   # Access control

Usage

Ask Claude Code questions about Foundry tasks:

  • "How do I query a dataset?"
  • "Help me set up a daily build schedule"
  • "Grant viewer access to john.doe on my dataset"
  • "Execute SQL query to count rows"

Claude will automatically use this skill to provide accurate guidance.

Documentation

See docs/user-guide/claude-skill.md for full documentation.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

Configuration

pltr configure configure

FAQ

How do I install pltr-cli?

Run openclaw add @anjor/pltr-cli in your terminal. This installs pltr-cli into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/anjor/pltr-cli. Review commits and README documentation before installing.