Source profileQuality 91/100

Fmarzochi/EGC/skills/general_part2/hermes-imports/SKILL.md

hermes-imports

Convert local Hermes operator workflows into sanitized EGC skills and release-pack artifacts. Use when preparing a Hermes workflow for public EGC reuse without leaking private workspace state, credentials, or local-only paths.

Source repository stars
45
Declared platforms
0
Static risk flags
0
Last source update
2026-08-19
Source checked
2026-08-25

Decision brief

What it does: where it fits

Use this skill when turning a repeated Hermes workflow into something safe to ship in EGC.

Best for

  • A Hermes workflow has repeated enough times to become reusable.
  • A local operator prompt should become a public EGC skill.
  • A launch, content, research, or engineering workflow needs sanitized handoff docs.

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/Fmarzochi/EGC --skill "skills/general_part2/hermes-imports"
Safe inspection promptEditorial

Inspect the Agent Skill "hermes-imports" from https://github.com/Fmarzochi/EGC/blob/cf16e7b72256ae4edf06f82f4500c715586c6af1/skills/general_part2/hermes-imports/SKILL.md at commit cf16e7b72256ae4edf06f82f4500c715586c6af1. 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

    When To Use

    A Hermes workflow has repeated enough times to become reusable.

    A Hermes workflow has repeated enough times to become reusable.A local operator prompt should become a public EGC skill.A launch, content, research, or engineering workflow needs sanitized handoff docs.
  2. 02

    Import Rules

    Convert local paths to repo-relative paths or placeholders.

    Convert local paths to repo-relative paths or placeholders.Replace live account names with role labels such as operator, default profile, or workspace owner.Describe credential requirements by provider name only.
  3. 03

    Sanitization Checklist

    Before committing an imported workflow, scan for:

    absolute paths such as /Users/.../.hermes paths unless the doc is explicitly explaining local setupAPI keys, tokens, cookies, OAuth files, or bearer strings
  4. 04

    Conversion Pattern

    1. Identify the repeatable operator loop. 2. Strip private inputs and outputs. 3. Rewrite local paths as repo-relative examples. 4. Turn one-off instructions into a When To Use section and a short process. 5. Add concrete output requirements. 6. Run a secret and local-path scan…

    Identify the repeatable operator loop.Strip private inputs and outputs.Rewrite local paths as repo-relative examples.

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

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

Pinned source

Provenance and original SKILL.md

Repository
Fmarzochi/EGC
Skill path
skills/general_part2/hermes-imports/SKILL.md
Commit
cf16e7b72256ae4edf06f82f4500c715586c6af1
License
Apache-2.0
Collected
2026-08-25
Default branch
main
View the original SKILL.md

Hermes Imports

Use this skill when turning a repeated Hermes workflow into something safe to ship in EGC.

Hermes is the operator shell. EGC is the reusable workflow layer. Imports should move stable patterns from Hermes into EGC without moving private state.

When To Use

  • A Hermes workflow has repeated enough times to become reusable.
  • A local operator prompt should become a public EGC skill.
  • A launch, content, research, or engineering workflow needs sanitized handoff docs.
  • A workflow mentions local paths, credentials, personal datasets, or private account names that must be removed before publication.

Import Rules

  • Convert local paths to repo-relative paths or placeholders.
  • Replace live account names with role labels such as operator, default profile, or workspace owner.
  • Describe credential requirements by provider name only.
  • Keep examples narrow and operational.
  • Do not ship raw workspace exports, tokens, OAuth files, health data, CRM data, or finance data.
  • If the workflow requires private state to make sense, keep it local.

Sanitization Checklist

Before committing an imported workflow, scan for:

  • absolute paths such as /Users/...
  • ~/.hermes paths unless the doc is explicitly explaining local setup
  • API keys, tokens, cookies, OAuth files, or bearer strings
  • phone numbers, private email addresses, and personal contact graphs
  • client names, family names, or account names that are not already public
  • revenue, health, or CRM details
  • raw logs that include tool output from private systems

Conversion Pattern

  1. Identify the repeatable operator loop.
  2. Strip private inputs and outputs.
  3. Rewrite local paths as repo-relative examples.
  4. Turn one-off instructions into a When To Use section and a short process.
  5. Add concrete output requirements.
  6. Run a secret and local-path scan before opening a PR.

Example: Launch Handoff

Local Hermes prompt:

Read my local workspace files and finalize launch copy.

EGC-safe version:

Use the public release pack under docs/releases/<version>/.
Return one X thread, one LinkedIn post, one recording checklist, and the missing assets list.

Example: Quiet-Hours Operator Job

Local Hermes job:

Run my private inbox, finance, and content checks overnight.

EGC-safe version:

Describe the scheduler policy, the quiet-hours window, the escalation rules, and the categories of checks. Do not include private data sources or credentials.

Output Contract

Return:

  • candidate EGC skill name
  • sanitized workflow summary
  • required public inputs
  • private inputs removed
  • remaining risks
  • files that should be created or updated

Frequently asked questions

What to verify before installation and use

What does the hermes-imports source document cover?

Use this skill when turning a repeated Hermes workflow into something safe to ship in EGC.

How do I install hermes-imports?

The source record exposes this install command: npx skills add https://github.com/Fmarzochi/EGC --skill "skills/general_part2/hermes-imports". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing