Hermes Imports
Use this skill when turning a repeated Hermes workflow into something safe to ship in ECC.
Hermes is the operator shell. ECC is the reusable workflow layer. Imports should move stable patterns from Hermes into ECC 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 ECC 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
- Identify the repeatable operator loop.
- Strip private inputs and outputs.
- Rewrite local paths as repo-relative examples.
- Turn one-off instructions into a
When To Use section and a short process.
- Add concrete output requirements.
- 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.
ECC-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.
ECC-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 ECC skill name
- sanitized workflow summary
- required public inputs
- private inputs removed
- remaining risks
- files that should be created or updated
Source: affaan-m/ECC → skills/hermes-imports/SKILL.md
Also appears in: affaan-m/ECC/docs/ja-JP/skills/hermes-imports/SKILL.md
1---2name: hermes-imports-23description: Convert local Hermes operator workflows into sanitized ECC skills and release-pack artifacts. Use when preparing a Hermes workflow for public ECC reuse without leaking private workspace state, credentials, or local-only paths.4---5# Hermes Imports
6
7Use this skill when turning a repeated Hermes workflow into something safe to ship in ECC.
8
9Hermes is the operator shell. ECC is the reusable workflow layer. Imports should move stable patterns from Hermes into ECC without moving private state.
10
11## When To Use
12
13- A Hermes workflow has repeated enough times to become reusable.
14- A local operator prompt should become a public ECC skill.
15- A launch, content, research, or engineering workflow needs sanitized handoff docs.
16- A workflow mentions local paths, credentials, personal datasets, or private account names that must be removed before publication.
17
18## Import Rules
19
20- Convert local paths to repo-relative paths or placeholders.
21- Replace live account names with role labels such as `operator`, `default profile`, or `workspace owner`.
22- Describe credential requirements by provider name only.
23- Keep examples narrow and operational.
24- Do not ship raw workspace exports, tokens, OAuth files, health data, CRM data, or finance data.
25- If the workflow requires private state to make sense, keep it local.
26
27## Sanitization Checklist
28
29Before committing an imported workflow, scan for:
30
31- absolute paths such as `/Users/...`
32- `~/.hermes` paths unless the doc is explicitly explaining local setup
33- API keys, tokens, cookies, OAuth files, or bearer strings
34- phone numbers, private email addresses, and personal contact graphs
35- client names, family names, or account names that are not already public
36- revenue, health, or CRM details
37- raw logs that include tool output from private systems
38
39## Conversion Pattern
40
411. Identify the repeatable operator loop.
422. Strip private inputs and outputs.
433. Rewrite local paths as repo-relative examples.
444. Turn one-off instructions into a `When To Use` section and a short process.
455. Add concrete output requirements.
466. Run a secret and local-path scan before opening a PR.
47
48## Example: Launch Handoff
49
50Local Hermes prompt:
51
52```text
53Read my local workspace files and finalize launch copy.
54```
55
56ECC-safe version:
57
58```text
59Use the public release pack under docs/releases/<version>/.
60Return one X thread, one LinkedIn post, one recording checklist, and the missing assets list.
61```
62
63## Example: Quiet-Hours Operator Job
64
65Local Hermes job:
66
67```text
68Run my private inbox, finance, and content checks overnight.
69```
70
71ECC-safe version:
72
73```text
74Describe the scheduler policy, the quiet-hours window, the escalation rules, and the categories of checks. Do not include private data sources or credentials.
75```
76
77## Output Contract
78
79Return:
80
81- candidate ECC skill name
82- sanitized workflow summary
83- required public inputs
84- private inputs removed
85- remaining risks
86- files that should be created or updated
87
88---
89
90**Source:** [`affaan-m/ECC`](https://github.com/affaan-m/ECC) → `skills/hermes-imports/SKILL.md`
91
92**Also appears in:** `affaan-m/ECC/docs/ja-JP/skills/hermes-imports/SKILL.md`