Skip to content
Skillv1.0.0

veeva-deploy-integration

Veeva Vault deploy integration for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: "veeva deploy integration".

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

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

See reviews

About

Imported from flight505/skill-forge (plugins/saas-packs/veeva-pack/skills/veeva-deploy-integration/SKILL.md). Install upstream with npx skills add flight505/skill-forge --skill veeva-deploy-integration. Copyright stays with the author (MIT).

Veeva Vault Deploy Integration

Overview

Guidance for deploy integration with Veeva Vault REST API, VQL queries, and VAPIL Java SDK.

Instructions

Key Vault API Concepts

  • Authentication: Session-based (username/password or OAuth 2.0)
  • Base URL: https://{vault}.veevavault.com/api/v24.1/
  • VQL: SQL-like query language for Vault data
  • VAPIL: Open-source Java SDK covering all Platform APIs
  • Lifecycle: Documents flow through states (Draft > In Review > Approved)

Common VQL Patterns

-- List documents by type
SELECT id, name__v FROM documents WHERE type__v = 'Trial Document'

-- Find objects
SELECT id, name__v FROM site__v WHERE status__v = 'active__v'

-- Join related objects
SELECT id, name__v, study__vr.name__v FROM study_country__v

Error Handling

Error Cause Solution
INVALID_SESSION_ID Session expired Re-authenticate
INSUFFICIENT_ACCESS Missing permissions Check security profile
INVALID_DATA Bad VQL or field name Validate against metadata
OPERATION_NOT_ALLOWED Lifecycle state conflict Check document state

Resources

Next Steps

See related Veeva Vault skills for more patterns.

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/flight505-skill-forge-veeva-deploy-integration/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.

flight505-skill-forge-veeva-deploy-integration.ocm.jsonjson
{
  "ocm": "1",
  "id": "flight505-skill-forge-veeva-deploy-integration",
  "kind": "skill",
  "name": "veeva-deploy-integration",
  "description": "Veeva Vault deploy integration for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: \"veeva deploy integration\".",
  "publisher": "flight505",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding",
      "medical"
    ],
    "tags": [
      "skill-md",
      "saas",
      "life-sciences",
      "crm",
      "veeva",
      "github"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Veeva Vault deploy integration for REST API and clinical operations. Use when working with Veeva Vault document management and CRM. Trigger: \"veeva deploy integration\"."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/flight505/skill-forge",
      "path": "plugins/saas-packs/veeva-pack/skills/veeva-deploy-integration/SKILL.md",
      "ref": "a8d8ca2cde01b847b6a98d74c2c5aebddca94c71",
      "url": "https://github.com/flight505/skill-forge/blob/a8d8ca2cde01b847b6a98d74c2c5aebddca94c71/plugins/saas-packs/veeva-pack/skills/veeva-deploy-integration/SKILL.md",
      "key": "flight505/skill-forge/plugins/saas-packs/veeva-pack/skills/veeva-deploy-integration/SKILL.md"
    },
    "compatibility": "Designed for Claude Code",
    "allowed_tools": [
      "Read,",
      "Write,",
      "Edit,",
      "Grep"
    ],
    "license": "MIT"
  },
  "instructions": "# Veeva Vault Deploy Integration\n\n## Overview\n\nGuidance for deploy integration with Veeva Vault REST API, VQL queries, and VAPIL Java SDK.\n\n## Instructions\n\n### Key Vault API Concepts\n\n- **Authentication**: Session-based (username/password or OAuth 2.0)\n- **Base URL**: `https://{vault}.veevavault.com/api/v24.1/`\n- **VQL**: SQL-like query language for Vault data\n- **VAPIL**: Open-source Java SDK covering all Platform APIs\n- **Lifecycle**: Documents flow through states (Draft > In Review > Approved)\n\n### Common VQL Patterns\n\n```sql\n-- List documents by type\nSELECT id, name__v FROM documents WHER",
  "cost": {
    "context_tokens": 366
  }
}

Fetch it by URL: GET /api/v1/registry/flight505-skill-forge-veeva-deploy-integration/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.