{"id":50495450,"url":"https://github.com/pipedrive/create-pipedrive-app","last_synced_at":"2026-06-02T06:31:23.100Z","repository":{"id":359359458,"uuid":"1232770820","full_name":"pipedrive/create-pipedrive-app","owner":"pipedrive","description":"Scaffold a production-ready Pipedrive Marketplace app with OAuth, database, and App Extensions in seconds.","archived":false,"fork":false,"pushed_at":"2026-05-21T15:00:23.000Z","size":22567,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-21T22:36:24.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pipedrive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-08T08:53:29.000Z","updated_at":"2026-05-21T15:15:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/pipedrive/create-pipedrive-app","commit_stats":null,"previous_names":["pipedrive/create-pipedrive-app"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pipedrive/create-pipedrive-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipedrive%2Fcreate-pipedrive-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipedrive%2Fcreate-pipedrive-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipedrive%2Fcreate-pipedrive-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipedrive%2Fcreate-pipedrive-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pipedrive","download_url":"https://codeload.github.com/pipedrive/create-pipedrive-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipedrive%2Fcreate-pipedrive-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33810341,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-02T06:31:22.487Z","updated_at":"2026-06-02T06:31:23.095Z","avatar_url":"https://github.com/pipedrive.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create-pipedrive-app\n\nCLI scaffolding tool for Pipedrive Marketplace integrations. Generates an Express + TypeScript + Drizzle ORM project with OAuth 2.0, a Pipedrive API client, and optional App Extensions frontend (React + Vite). The CLI can be used standalone without any AI tooling.\n\n## Usage\n\n```bash\nnpx create-pipedrive-app\n```\n\nThe CLI prompts for:\n\n- **Project name**\n- **Database**: Postgres, MySQL, or SQLite\n- **App Extensions**: custom panel, custom modal, or neither\n\n## Generated project\n\n```\n\u003cproject-name\u003e/\n  src/\n    index.ts                  # server entry point\n    app.ts                    # Express app with OAuth router (+ optional App Extensions)\n    oauth/                    # OAuth 2.0 install, callback, token exchange, refresh\n    pipedrive/                # Pipedrive API client wrapper\n    database/                 # Drizzle ORM schema, migrations, db driver\n    app-extensions/           # App Extensions handlers (if selected)\n  frontend/\n    app-extension-ui/         # React + Vite iframe UI (if App Extensions selected)\n  .env.example\n  docker-compose.yml\n  README.md\n  package.json\n  tsconfig.json\n```\n\nThe generated project uses **Express + TypeScript + Drizzle ORM** (ESM, Node.js).\n\nWhen App Extensions are selected, the project includes a shared React iframe app for custom panels and modals. `docker-compose up --watch` starts the backend and Vite dev server in containers with Compose Watch. Local Developer Hub iframe URLs must point at an HTTPS tunnel to the Vite dev server — for example `https://\u003cyour-vite-tunnel\u003e/extensions/panel` or `https://\u003cyour-vite-tunnel\u003e/extensions/modal`. After `npm run build`, production iframe URLs can point at the backend-hosted routes.\n\n## Requirements\n\n- Node.js (to run `npx create-pipedrive-app`)\n- Docker (for Postgres/MySQL databases and App Extensions development)\n\n## Using with an AI coding assistant\n\nThe package ships plugins for **Claude Code** and **Codex** that wrap the CLI with guided slash commands. The plugins require the CLI — they call `npx create-pipedrive-app` under the hood.\n\n### Claude Code\n\nThis repository acts as the Claude Code plugin marketplace. Claude reads the marketplace catalog from `.claude-plugin/marketplace.json`, then installs the plugin from `plugin/`.\n\nAfter this repository is public, install the plugin with:\n\n```bash\nclaude plugin marketplace add pipedrive/create-pipedrive-app\nclaude plugin install create-pipedrive-app@pipedrive\n```\n\nInside Claude Code, use the equivalent slash commands:\n\n```text\n/plugin marketplace add pipedrive/create-pipedrive-app\n/plugin install create-pipedrive-app@pipedrive\n/reload-plugins\n```\n\nThe plugin calls `npx create-pipedrive-app` under the hood, so the npm package must also be published or otherwise available to users.\n\n### Codex\n\n```bash\ncodex plugin install create-pipedrive-app\n```\n\n### Available commands\n\nBoth plugins expose the same slash commands:\n\n| Command | What it does |\n|---------|-------------|\n| `/pipedrive-new-app` | Scaffold a new integration project |\n| `/pipedrive-add-app-extension` | Add a custom panel or modal extension |\n| `/pipedrive-api` | Get guidance on using the Pipedrive API |\n| `/pipedrive-review-marketplace-readiness` | Check for gaps before submitting to the marketplace |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpipedrive%2Fcreate-pipedrive-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpipedrive%2Fcreate-pipedrive-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpipedrive%2Fcreate-pipedrive-app/lists"}