用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/vamseeachanta/workspace-hub --skill dark-intelligence-workflow-step-1-identify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
Write outbound email and external messages in Vamsee Achanta's voice — a subtle offer to help, never bold or rash claims. Load before drafting ANY email, LinkedIn/Collide reply, proposal note, or outreach sent under his name.
Save/publish analysis or computation results from ANY ecosystem repo to Hugging Face as a queryable, viewer-renderable dataset. Use when the user wants to "save results to hugging face", "publish dataset to HF", "hugging face data saving", "save analysis results", "hf dataset", "make results queryable", or "render via datasets-server API". Reshapes nested results into flat parquet tables, writes a dataset card with a viewer `configs:` block and provenance, applies license/public-vs-private routing, enforces a domain data-quality gate (faithful-to-source != correct), publishes to `aceengineer/<repo>-<projection>`, and verifies via the datasets-server API.
Clone, create, fork, configure, and manage GitHub repositories. Manage remotes, secrets, releases, and workflows. Works with gh CLI or falls back to git + GitHub REST API via curl.
正在显示 SKILL.md
| name | dark-intelligence-workflow-step-1-identify |
| description | Sub-skill of dark-intelligence-workflow: Step 1 — Identify (+4). |
| version | 1.0.0 |
| category | data |
| type | reference |
| scripts_exempt | true |
Locate the Excel/file containing engineering calculations.
What to look for:
Check doc index for the file:
uv run --no-project python -c "
import json
matches = []
with open('data/document-index/index.jsonl') as f:
for line in f:
rec = json.loads(line)
path_lower = rec.get('path', '').lower()
if '<filename>' in path_lower or '<category>' in path_lower:
matches.append(rec)
print(f'Found {len(matches)} matching documents')
for m in matches[:20]:
print(f\" {m.get('source', '?'):15s} {m.get('path', '')[:80]}\")
"
Output: file path, description of what the spreadsheet calculates, list of tabs/sheets.
Pull out generic methodology from the file. Extract each of these:
| Item | What to capture |
|---|---|
| Equations | Convert Excel formulas to LaTeX notation |
| Input ranges | Parameter names, symbols, units, typical value ranges |
| Output ranges | Result names, symbols, units, expected values for test cases |
| Standard references | Any codes/standards cited (API, DNV, ISO, ASME, etc.) |
| Methodology notes | Documentation within the file, assumptions, limitations |
| Unit systems | SI, Imperial, or mixed — note conversions used |
| Worked examples | Complete input-output pairs with known-correct answers |
Tips for Excel formula extraction:
= formulas: translate operators directly to math notationIF/AND/OR: translate to conditional logic descriptionsVLOOKUP/INDEX/MATCH: identify the lookup table dataCtrl+Shift+Enter): note array dimensionsFunction: extract algorithm as pseudocodeThis step is non-negotiable. Extraction cannot proceed without passing.
Run the legal sanity scan on all extracted content:
bash scripts/legal/legal-sanity-scan.sh
Check for and remove:
If ANY block-severity violations are found: STOP. Remediate all violations before proceeding to Step 4.
Replace all client-specific references with generic equivalents:
Save extracted methodology as structured YAML.
Location: knowledge/dark-intelligence/<category>/<subcategory>/
Filename: dark-intelligence-<descriptive-name>.yaml
Schema:
# dark-intelligence-<name>.yaml
source_type: "excel|python|matlab|fortran"
source_description: "Generic description of what this calculates (no client refs)"
extracted_date: "YYYY-MM-DD"
legal_scan_passed: true
category: "<engineering category>"
subcategory: "<specific topic>"
equations:
- name: "<equation name>"
latex: "<LaTeX formula>"
excel_formula: "<original Excel formula, sanitized>"
standard: "<standard reference if any>"
description: "<what it computes>"
inputs:
- name: "<input name>"
symbol: "<LaTeX symbol>"
unit: "<unit>"
typical_range: [min, max]
test_value: <value for TDD>
outputs:
- name: "<output name>"
symbol: "<LaTeX symbol>"
unit: "<unit>"
test_expected: <expected value for
{ }
{ }
Validation: ensure legal_scan_passed: true is present and all fields
use generic descriptions free of client identifiers.
Convert each worked example from the archive into a pytest test function.
Template:
def test_<calc_name>_from_dark_intelligence():
"""Extracted from legacy calculation — verified against original output."""
# Arrange — inputs from archive
<input_name> = <test_value>
# Act — call the implementation
result = <function>(<inputs>)
# Assert — expected output from archive
assert abs(result - <expected>) < <tolerance>, (
f"Expected {<expected>}, got {result}"
)
Rules:
use_as_test: truetolerance from the archive for floating-point comparisons