Install
$ agentstack add skill-asimons81-hermes-field-kit-x-analytics-import ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README — it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming — see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps — measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
X Analytics Import
Overview
Use this skill to turn X Analytics CSV exports into validated, normalized, private local snapshots. The deterministic engine is scripts/x_analytics_import.py; it uses only the Python standard library and has no network, browser, Git, or publishing side effects.
The operating rule is simple:
first run: inspect -> validate-only -> dry-run -> full-import
later runs: inspect -> validate-only -> dry-run -> incremental-import -> compare
Read references/operations.md only when command detail or recovery guidance is needed.
When to Use
Use this skill when:
- Overview, content, or video analytics CSVs are available locally.
- A first normalized baseline must be established.
- New exports must be added without duplicating prior imports.
- Two snapshots must be compared using matched coverage.
- Lane rules changed and historical posts must be reclassified.
Do not use this skill when:
- The exports still need to be downloaded from X.
- The task is to post, reply, follow, message, or modify an X account.
- The data comes from GA4, Search Console, or another analytics product.
- The user wants raw exports copied into Git or published.
Safety Contract
- Treat raw exports, normalized rows, post text, post links, source hashes, revenue fields, and lane results as sensitive.
- Select exact files by path, date coverage, and modification time. Never trust alphabetical glob order.
- Run
inspect,validate-only, anddry-runbefore every write mode. - Store outputs outside repositories, normally under
~/.hermes/data/x-analytics-import. - Never copy, rename, overwrite, stage, commit, or publish raw CSVs.
- Never use
--forceunless the user explicitly requests an identical re-import. - A successful import does not authorize updates to notes, dashboards, websites, or Git.
Modes
| Mode | Purpose | Writes | |---|---|---:| | inspect | Detect export type, schema, hash, rows, and coverage | No | | validate-only | Run structural and semantic checks | No | | dry-run | Execute the complete pipeline without artifacts | No | | full-import | Create the first baseline or deliberate rebuild | Yes | | incremental-import | Add a new source set only when hashes differ | Yes | | compare-snapshots | Compare matched dates and post IDs | No | | rebuild-classification | Reapply lane rules without reparsing CSVs | Yes |
Workflow
1. Identify the exact export set
Expected file families:
account_overview_analytics*.csv
account_analytics_content__.csv
video_overview_analytics*.csv
Video is optional. Confirm the files belong to the intended export run. Chrome suffixes such as (1) are not chronology.
Completion criterion: every selected file has an exact path, plausible coverage, and no stale duplicate has been substituted.
2. Choose the run type
- No completed manifest exists: follow First baseline.
- A completed manifest exists and the exports are newer: follow Recurring refresh.
- The same source hashes already exist: stop at
already_imported.
Completion criterion: the agent can name the prior import ID or state that no baseline exists.
3. First baseline
Run, in order:
inspect
validate-only
dry-run
full-import
Use the same exact file paths for all four stages. Stop before full-import when validation fails, reconciliation fails, or file pairing is doubtful.
After full-import, verify:
- A completed manifest and normalized snapshot exist.
- Validation, reconciliation, classification, analysis, and public-safe reports exist.
- Manifest hashes match the selected inputs.
- Date coverage and partial-day status are recorded.
- Re-running the same files with
incremental-importreturnsalready_imported.
Completion criterion: one verified baseline exists and duplicate protection is proven.
4. Recurring refresh
Run, in order:
inspect
validate-only
dry-run
incremental-import
compare-snapshots
Use incremental-import for ordinary future runs. If it returns already_imported, do not force a duplicate and do not create a comparison.
Compare the new snapshot against the previous completed snapshot. Use the original baseline only for a separate long-range view.
Comparison rules:
- Use overlapping overview dates.
- Use matched post IDs for post-level deltas.
- Report new and removed post IDs separately.
- Do not subtract whole rolling-window totals when coverage differs.
Completion criterion: a new import is either safely rejected as duplicate or written once and compared on matched coverage.
5. Interpret the result
Use medians, p25, p75, p90, sample sizes, and IQR outliers. Separate originals, replies, quotes, reposts, and unknown types. Treat CSV-only post type as heuristic. Preserve Uncertain lane results rather than forcing a winner.
Exclude detected partial dates from default statistics. State confidence and source coverage. Do not claim causation from correlation.
Completion criterion: every recommendation includes evidence, sample size, confidence, and outlier context.
6. Report without leaking data
Return operational status first:
- selected filenames
- import status and import ID
- validation and reconciliation status
- partial-day status
- artifact paths
- idempotency result
- warnings requiring attention
Exact metrics, post content, source hashes, revenue, and strategy findings remain local unless the user explicitly requests them.
Completion criterion: the response is useful without exposing sensitive values by default.
Command Pattern
python "/scripts/x_analytics_import.py" --overview "" --content "" --video "" --config "" --output-dir "" --json
Omit --video or --config when unused. Copy references/config.example.json to a private local path before customizing lane rules.
Snapshot comparison:
python "/scripts/x_analytics_import.py" compare-snapshots --snapshot-a "" --snapshot-b "" --json
Failure Gates
Stop before a write mode when:
- Required columns are missing.
- Dates or numeric values are malformed.
- Duplicate post IDs are present.
- Content extends beyond overview coverage.
- Files appear to come from different export runs.
- The output path is inside a repository.
Warnings such as an X filename window starting before the first actual content row may be acceptable when actual row coverage and end dates align. Explain the warning rather than silently discarding it.
Common Pitfalls
- Using
full-importevery time. Use it once for the baseline; useincremental-importafterward. - Selecting the alphabetically last download. Inspect exact paths, timestamps, hashes, and coverage.
- Assuming the newest day is complete. Use recorded partial-day detection.
- Comparing unlike windows. Compare overlapping dates and matched post IDs.
- Treating content metrics as daily account totals. Content rows are keyed by publish date and are not directly comparable to daily overview totals.
- Forcing lane or post-type certainty. Preserve uncertainty and confidence labels.
- Publishing the local analysis report. Use the public-safe report as the disclosure starting point.
- Using real exports as fixtures. Tests must remain synthetic.
Verification Checklist
- [ ] The exact overview and content paths are recorded
- [ ] Video is included only when compatible and current
- [ ]
inspect,validate-only, anddry-runcompleted first - [ ] Baseline uses
full-import; later runs useincremental-import - [ ] Validation has no errors
- [ ] Reconciliation has no unresolved failure
- [ ] Output is outside every repository
- [ ] Manifest hashes match the selected sources
- [ ] Partial-day status is recorded
- [ ] Duplicate re-import returns
already_imported - [ ] Comparisons use matched coverage
- [ ] Public-safe output excludes sensitive values
- [ ] Raw CSVs were not copied, staged, committed, or published
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: asimons81
- Source: asimons81/hermes-field-kit
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.