Source profileQuality 54/100Review permissions

MoizIbnYousaf/marketing-cli/skills/remotion-best-practices/references/upstream-internal/skills/add-expert/SKILL.md

add-expert

Add a new expert to the Remotion experts page

Source repository stars
27
Declared platforms
0
Static risk flags
2
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

1. Add the expert's photo to both: - packages/docs/static/img/freelancers/.png - packages/promo-pages/public/img/freelancers/.png

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/MoizIbnYousaf/marketing-cli --skill "skills/remotion-best-practices/references/upstream-internal/skills/add-expert"
    Safe inspection promptEditorial

    Inspect the Agent Skill "add-expert" from https://github.com/MoizIbnYousaf/marketing-cli/blob/f12fbcbe4929584697b309b9096c9427b0cfce8e/skills/remotion-best-practices/references/upstream-internal/skills/add-expert/SKILL.md at commit f12fbcbe4929584697b309b9096c9427b0cfce8e. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Steps

      1. Add the expert's photo to both: - packages/docs/static/img/freelancers/.png - packages/promo-pages/public/img/freelancers/.png

      Add the expert's photo to both:packages/docs/static/img/freelancers/.pngpackages/promo-pages/public/img/freelancers/.png

    Permission review

    Static risk signals and limitations

    Network access

    medium · line 16

    The documentation includes network, browsing, or remote request actions.

    website: 'https://example.com' | null,

    Network access

    medium · line 21

    The documentation includes network, browsing, or remote request actions.

    videocall: 'https://cal.com/...' | null,

    Runs scripts

    medium · line 40

    The documentation asks the agent to run terminal commands or scripts.

    bun render-cards

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score54/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars27SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guidecatalog recordEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    MoizIbnYousaf/marketing-cli
    Skill path
    skills/remotion-best-practices/references/upstream-internal/skills/add-expert/SKILL.md
    Commit
    f12fbcbe4929584697b309b9096c9427b0cfce8e
    License
    MIT
    Collected
    2026-07-28
    Default branch
    main
    View the original SKILL.md

    Steps

    1. Add the expert's photo to both:

      • packages/docs/static/img/freelancers/<firstname>.png
      • packages/promo-pages/public/img/freelancers/<firstname>.png

      The image should be a square headshot (PNG format). Both paths must have the same file.

    2. Add an entry to the experts array in packages/promo-pages/src/components/experts/experts-data.tsx:

      {
          slug: 'firstname-lastname',
          name: 'First Last',
          image: '/img/freelancers/<firstname>.png',
          website: 'https://example.com' | null,
          x: 'twitter_handle' | null,
          github: 'github_username' | null,
          linkedin: 'in/linkedin-slug/' | null,
          email: '[email protected]' | null,
          videocall: 'https://cal.com/...' | null,
          since: new Date('YYYY-MM-DD').getTime(),
          description: (
              <div>
                  A short description of the expert's work and specialties.
                  Links to projects can be included with <a> tags.
              </div>
          ),
      },
      
      • since should be set to today's date
      • slug must be lowercase, hyphenated version of the name
      • Set unused social fields to null
      • The entry goes at the end of the experts array (before the closing ])
    3. Render the expert card by running in packages/docs:

      bun render-cards
      

      This generates packages/docs/static/generated/experts-<slug>.png. Verify it says "Rendered experts-<slug>" (not "Existed").