forcedotcom/sf-skills

dx-devops-project-manage

Use this skill to list, view, or manage DevOps Center projects in a Salesforce org — show all projects, create a new project, or update an existing project's name, description, or active status.

查看源码
仓库原始内容

按源仓库内容呈现,保留标题、案例、代码、表格、链接以及原文引用的演示图片。

DevOps Center Project Management

Manages the complete DevOps Center project lifecycle — from listing existing projects through creation to updating project settings. Provides headless CLI-driven operations for autonomous release workflows.

Scope

  • In scope: List DevOps Center projects, create a new project, update project fields (name, description), resolve a project name to its ID for downstream skills
  • Out of scope: Work item lifecycle, pipeline creation/configuration, promotion/deployment, conflict detection (separate skills)

Required Inputs

Gather or infer before proceeding:

  • Operation type: list, create, or update
  • Target org: --target-org <alias> is required on every command unless the target-org config var is already set (sf config get target-org)
  • For list: no other required input (lists all projects in the org); optional name filter
  • For create: project name (required), description (optional)
  • For update: project ID (required), fields to update — at least one of name, description, or active status

Defaults unless specified:

  • Output format: --json for headless consumption
  • Project identifier: when the user gives a project name for update, resolve it to a project ID first via sf devops project list --target-org <alias> --json

If the user provides a clear request ("list all projects", "create a project called Release Alpha", "rename project X to Y"), proceed immediately without unnecessary questions.


Workflow

All operations use sf devops project CLI commands with --json output for structured consumption.

Phase 1 — Identify Operation

  1. Determine the operation type from user intent:
  • Keywords like "list", "show", "find", "what projects", "get project ID" → list operation
  • Keywords like "create", "new", "set up", "initialize" → create operation
  • Keywords like "update", "change", "rename", "modify", "edit" → update operation

Phase 2 — Execute Operation

  1. Verify org authentication before any operation, checking the same org the operation will target:
bash
   # When a specific org is requested, check that alias (do NOT rely on the default org):
   sf org display --target-org <alias> --json
   # Only when no alias is supplied and a default org is expected:
   sf org display --json
  • If the requested org is not authenticated or authentication has expired, instruct the user to run:
bash
     sf org login web --alias <alias>
  • Verify the authenticated org has DevOps Center enabled by attempting to list projects
  • --target-org <alias> is required on every sf devops project command unless the target-org config var is set (check with sf config get target-org). Add --target-org <alias> to all commands when targeting a specific org — a targeted operation must never require or reset the default org
Deterministic project-list parsing, empty-list handling, name→ID resolution, idempotent create, and update are handled by the scripts in scripts/ — each script exits non-zero with an actionable message on failure. Pass the org alias as the trailing/--target-org argument when the target-org config var is not set; omit it to use the default org. The scripts read the authoritative .result.projects[] list envelope.
  1. List projects — when the user wants to see existing projects or resolve a project name to an ID:
  • Use the `sf devops project list` CLI (via `scripts/list-projects.sh`) — do NOT substitute an MCP/metadata tool (e.g. a list_devops_center_projects tool). The sf devops project CLI is the only supported, verifiable path; other tools bypass this skill and will not satisfy the operation.
  • To list all projects: run scripts/list-projects.sh [target-org] and report any errors it returns. Output is tab-separated Id Name Description, one project per line; a single line NO_PROJECTS means none exist.
  • To resolve a single project name to its ID: run scripts/list-projects.sh --resolve "<project-name>" [target-org] and report any errors it returns (exit 3 = no such project).
  1. Create a project — when the user wants to create a new project:
  • Run scripts/create-project.sh "<name>" "<description>" [target-org] and report any errors it returns. The description argument is optional.
  • The script is idempotent: it prints EXISTING <id> if a project with that name already exists, or CREATED <id> after creating and verifying a new one. Capture the returned ID for downstream operations (work items, pipelines).
  1. Update a project — when the user wants to change name, description, or active status:
  • Run scripts/update-project.sh --project (<id>|name:<name>) [--name "<new-name>"] [--description "<new-desc>"] [--is-active|--no-is-active] [--target-org <alias>] and report any errors it returns.
  • Pass --project name:<name> to update by name (the script resolves it to an ID) or --project <id> for a known ID.
  • At least one of --name, --description, or --is-active/--no-is-active must be provided (the script enforces this). Use --is-active to activate or --no-is-active to deactivate.
  • The script prints UPDATED <id> on success.

Phase 3 — Report

  1. Report results (the scripts already verified success deterministically; report their output to the user):
  • List: present projects in a readable format showing project ID, name, and description. If NO_PROJECTS was returned, state that no DevOps Center projects were found. If resolving a name to an ID, return the ID.
  • Create: return the project ID and confirm — "Project created successfully. Use this project ID for work items and pipelines: <id>." If the script returned EXISTING <id>, tell the user the project already existed and return that ID.
  • Update: confirm which fields were changed (e.g., "Project name updated to 'Platform Core'", or "Project deactivated").

Rules / Constraints

ConstraintRationale
Always use the sf devops project CLIList/create/update MUST go through sf devops project (via the scripts/), never a salesforce_dx MCP tool or metadata query — those bypass this skill and fail the operation
All sf devops commands must use --json flagStructured output is required for headless consumption; human-readable output is unreliable for parsing
--target-org required unless config var setEvery sf devops project command requires --target-org <alias> unless the target-org config var is already set
Project ID required for updateUse --project-id (-i); resolve from a name via sf devops project list --target-org <alias> --json when the user gives a name
--name required for createA project cannot be created without a name
At least one update field requiredUpdate command fails if none of --name, --description, or --is-active is provided
Use --is-active / --no-is-active for activationActivate with --is-active, deactivate with --no-is-active; do not pass a value
Idempotent create operationsCheck for an existing project with the same name before creating a duplicate
Never use interactive promptsSkills run in headless environments; all inputs must be via CLI flags
A project is a prerequisite for work items and pipelinesDownstream skills (work-item-manage, pipeline-manage) need the project ID this skill returns

Gotchas

IssueResolution
No default org setRun sf org display --json first; if it fails, instruct the user to run sf org login web --set-default
User provides project by name, not ID (update)Resolve via scripts/list-projects.sh --resolve "<name>" [target-org], or pass --project name:<name> to scripts/update-project.sh (it resolves internally)
Tempted to use an MCP listing toolA salesforce_dx MCP tool (e.g. list_devops_center_projects) may be available, but using it bypasses this skill and the sf devops project list CLI — always list via scripts/list-projects.sh
DevOps Center not enabledIf sf devops project list errors, the org lacks DevOps Center; instruct the user to provision it in Setup → DevOps Center
Project not found (update)User provided an invalid project ID; run scripts/list-projects.sh [target-org] to show available projects
Wrong list envelopeproject list returns records under .result.projects[] (capitalized Id/Name/Description), NOT .result[]; the scripts already use the correct path
Duplicate project nameIdempotent create check should catch this; return the existing project ID instead of creating a duplicate
Empty project listNo projects exist yet; guide the user to create one before setting up work items or pipelines
Missing update fieldUpdate fails if none of --name, --description, or --is-active is provided; ensure at least one is passed
No default org and no `--target-org`Commands fail with a NoOrgFound / missing target-org error; set --target-org <alias> or sf config set target-org <alias>
Activate/deactivate passes a value--is-active is a boolean flag — use --is-active or --no-is-active, never --is-active true

Output Expectations

Deliverables vary by operation:

  • List: tab-separated Id Name Description lines (or NO_PROJECTS) from scripts/list-projects.sh
  • Create: EXISTING <id> or CREATED <id> from scripts/create-project.sh
  • Update: UPDATED <id> from scripts/update-project.sh

Outputs are derived from the sf devops project CLI via the scripts/ helpers, which read the authoritative .result.projects[] list envelope.


Verification Checklist

Before reporting results to the user:

Universal Checks

  • [ ] Was org authentication verified with sf org display --json?
  • [ ] Was --target-org <alias> supplied to the script (or the target-org config var confirmed set)?
  • [ ] Did the invoked script exit 0? (Non-zero exit means the operation failed — report the script's error message.)

List Operation Checks

  • [ ] Are projects displayed with project ID, name, and description?
  • [ ] If the script returned NO_PROJECTS, was this communicated to the user?
  • [ ] If resolving a name to an ID, was the ID returned (or "not found" surfaced on exit 3)?

Create Operation Checks

  • [ ] Did the script return CREATED <id> or EXISTING <id>, and was the ID reported?

Update Operation Checks

  • [ ] Was the project identified by --project <id> or --project name:<name>?
  • [ ] Was at least one update field provided (name, description, or --is-active/--no-is-active)?
  • [ ] Did the script return UPDATED <id>?

Cross-Skill Integration

WhenDelegate to
User wants to create, list, or update work items in a projectdx-devops-work-item-manage (pass the project ID from this skill)
User wants to create or configure a pipeline for a projectdx-devops-pipeline-manage
User wants to promote or deploy changesdx-devops-promote

This skill typically runs first in a DevOps Center workflow — the project ID it returns is the entry point for work item and pipeline skills.


Reference File Index

FileWhen to read / run
scripts/list-projects.shWorkflow step 3 — list all projects or resolve a project name to an ID (--resolve); handles the empty-list case
scripts/create-project.shWorkflow step 4 — idempotently create a project and verify it via re-read
scripts/update-project.shWorkflow step 5 — update name/description/active status by ID or name
references/cli-commands.mdWhen you need detailed CLI flag documentation, JSON output schemas, or error handling patterns
examples/common-workflows.mdWhen the user's request matches a common pattern (name resolution, idempotent creation, project setup as a workflow entry point)
来自同一仓库

更多 Skills

全部 Skills
forcedotcom
社区

education-cloud-multi-campus-configure

Use this skill when a Salesforce Administrator needs to create OR maintain an institutional hierarchy for Education Cloud by parsing organizational structure from a PDF, URL, text, or CSV. On a first run it creates System, Campus, College, and Department Account records linked via ParentId plus 1:1 Business Profile records. On later runs it reconciles the org's existing hierarchy against the desired structure and applies only the delta — adding new units, renaming, or moving a node under a different parent — never recreating what exists. TRIGGER when the user wants to set up, configure, build, update, restructure, or reorganize a multi-campus structure, institutional hierarchy, or account hierarchy with business profiles; or add, rename, or move a campus, college, or department. DO NOT TRIGGER for single-campus flat setups without hierarchy levels, one-off manual account creation, or non-Education-Cloud account management.

安装量
2
GitHub Stars
976
最近更新
9月8日
forcedotcom
社区

automation-sandbox-post-copy-config-generate

Generate the JSON config file that the Salesforce sandbox post-copy automation tool consumes, from a customer SOP in any format (PDF, xlsx, csv, JSON, docx, Markdown, plain text, or a screenshot of an endpoint table). Use when the user asks to create, build, generate, produce, or convert a post-copy or post-refresh automation config — turning a sandbox-refresh SOP into a JSON array of OutboundMessages and RemoteSiteSettings entries with ConfigurationName, Label, Fields, IsActive, and ExecutionOrder. Also trigger for phrasings like \"post-copy config\", \"post-refresh automation JSON\", \"update the outbound message (OBM) endpoints after refresh\", \"convert this SOP to config\", \"remote site settings JSON\", \"refresh planner to JSON\", or \"sandbox refresh config\". DO NOT TRIGGER when: user wants to deploy the generated config to an org (use platform-metadata-deploy), or apply/execute/run/dry-run the post-copy automation JSON against a sandbox (use automation-sandbox-post-copy-configure).

安装量
1
GitHub Stars
976
最近更新
9月8日
forcedotcom
社区

commerce-b2b-open-code-components-integrate

Integrate Salesforce B2B Commerce open source components from GitHub into B2B Commerce stores. Use when users mention \"integrate open code components\", \"open source B2B commerce\", \"add open code components\", \"forcedotcom/b2b-commerce-open-source-components\", or want to add open source commerce components to their store. Copies all components and labels so they become available in Experience Builder.

安装量
1
GitHub Stars
976
最近更新
9月8日
forcedotcom
社区

commerce-b2b-open-code-components-replace

Replace OOTB (out-of-the-box) B2B Commerce components with open source equivalents in site metadata content.json files, or look up the equivalent open code site: component for OOTB definitions. Use when users mention \"replace OOTB components\", \"replace commerce components with open code\", \"swap OOTB for open source\", \"replace commercebuilder:\", \"replace OOTB in site\", \"replace component in site metadata\", \"replace component definition\", \"find open code equivalent\", \"equivalent open code component\", \"OOTB to open code mapping\", \"what is the site component for\", components \"in this view\" or \"for a given view\", or a specific list of component names — and want to update or only discover mappings in their store metadata.

安装量
1
GitHub Stars
976
最近更新
9月8日