Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

basalt-cortex玄武岩皮质

Agent Skill

basalt-cortex 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

824

周安装

34

GitHub Stars

750

下载量

269
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:basalt-cortex(玄武岩皮质)
来源仓库:https://github.com/jezweb/claude-skills
仓库路径:skills/basalt-cortex
安装命令:
npx skills add https://github.com/jezweb/claude-skills --skill basalt-cortex
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jezweb/claude-skills --skill basalt-cortex

简介

basalt-cortex 用于从多源知识中提取内容并存储为 Obsidian 兼容的 Markdown 文件。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中需要结构化知识管理与自动同步时使用。
  • 支持初始化 vault、挖掘邮件/Slack 内容、全文检索及统计报告生成。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Basalt Cortex

Mine knowledge from multiple sources into Obsidian-compatible markdown files stored in ~/Documents/basalt-cortex/. Each file has structured YAML frontmatter. Files auto-sync to basaltcortex.com via the basalt-cortex CLI tray daemon.

Read references/basalt-format.md before any file operations.

Modes

ModeTriggerWhat it does
init"set up cortex", "cortex init"Create vault structure, state.json, example notes
mine"run the cortex", "mine emails", "mine slack"Extract from a source, write Basalt files
query"cortex search", "what do I know about"Search across Basalt files
stats"cortex stats"Count files, show vault totals
sync"cortex sync"Push to Frond API (future — see references/sync-patterns.md)

Init Mode

Create the vault structure. Run once before first mine.

Check for existing vault

ls ~/Documents/basalt-cortex/state.json 2>/dev/null && echo "EXISTS" || echo "FRESH"

If EXISTS: ask user — skip, reset (data loss warning), or continue (add missing folders only).

Create structure

mkdir -p ~/Documents/basalt-cortex/{clients,contacts,communications,knowledge,projects,notes,.obsidian}

Write state.json

{
  "version": "1.0",
  "format": "basalt",
  "cursors": { "gmail": null, "google_chat": null, "slack": null, "calendar": null },
  "last_run": null,
  "totals": { "clients": 0, "contacts": 0, "communications": 0, "knowledge": 0 },
  "processed_source_ids": [],
  "runs": []
}

Write Obsidian config

// ~/Documents/basalt-cortex/.obsidian/app.json
{ "newFileLocation": "folder", "newFileFolderPath": "notes" }

Write 3 example notes

Create one example client, contact, and knowledge note in Basalt format so the user can see the structure. Use templates from references/basalt-format.md.

Report the created structure to the user. Tell them to open ~/Documents/basalt-cortex/ in Obsidian.


Mine Mode

Extract knowledge from a source and write Basalt-format files.

Source Selection

Ask or detect which source to mine:

SourceFetch methodNotes
gmail (default)Gmail MCP (gmail_messages)Use extract_contacts + list + get
google-chatGoogle Chat MCP (chat_messages)Mine space-by-space, NOT search_active
slackSlack MCP or API tokenMCP tools or curl with token
google-driveDrive MCP or gws CLIMetadata + summaries, don't copy full docs
localRead tool + Globfind + cat on local directories
mcpMCP tool callsAny connected MCP server with searchable data
webWebFetch or browserFirecrawl, Playwright, or WebFetch
calendarCalendar MCP or gws CLIEvents, attendees, meeting notes

Proven Extraction Workflow (Two-Phase)

Mining works in two phases. Phase 1 (reconnaissance) uses MCP tools interactively. Phase 2 (batch write) generates a Python script for efficiency.

Phase 1: Reconnaissance via MCP (interactive)

Use MCP tools to fetch raw data and identify entities. Claude does the AI extraction in-context — no external LLM call needed.

Gmail example:

1. extract_contacts — scan 100 recent emails, get deduplicated contacts with names/emails/counts
   - Use `field: "from"` for inbound contacts
   - Use `field: "to"` for outbound contacts (from sent mail)
   - Exclude automated domains: jezweb.net, google.com, github.com, cloudflare.com, etc.

2. list — fetch 30-50 emails per batch with bodyPreview
   - Query: `in:inbox -category:promotions -category:social -category:updates -category:forums after:YYYY/MM/DD`
   - Format: compact or full, bodyPreview: 1000-2000

3. get — fetch full content for significant threads (client conversations, support requests, decisions)

4. Pre-filter while scanning:
   - Skip: 2FA codes, domain expiry notices, payment receipts, Wordfence alerts, auto top-ups
   - Keep: Real human conversations, support requests, project discussions, business decisions
   - See references/prefilter-patterns.md for full skip/keep rules

Google Chat example:

1. chat_spaces list — get all spaces with lastActiveTime
2. chat_messages list — fetch ONE space at a time, limit 25-50
   - NEVER use search_active for mining (times out on 50+ spaces)
   - Iterate space by space, save progress after each
3. Pre-filter: skip bot messages, join/leave events, webhook posts

From the fetched data, identify:

  • CLIENTS: businesses/organisations (name, domain, industry)
  • CONTACTS: people mentioned (name, email, role, company, phone if visible)
  • COMMUNICATIONS: the interaction itself (subject, participants, summary, type)
  • KNOWLEDGE: facts, decisions, preferences, commitments, relationships, deadlines

For each entity, craft a summary field: 1-3 sentences, dense with names and context. This is the Vectorize embedding input — make it specific and useful for semantic search.

Phase 2: Batch Write via Python Script

Once entities are identified, generate a Python script to write all Basalt files at once. This is dramatically faster than individual Write tool calls (55 files in one execution vs 8 tool calls for 17 files).

Script location: .jez/scripts/mine-{source}-batch.py

Script must include these helper functions:

  • slugify(text) — lowercase, hyphens, no special chars, max 60 chars
  • write_client(domain, name, industry, summary, contacts, tags)
  • write_contact(name, email, role, company, company_domain, summary, phone, tags)
  • write_communication(date, subject_slug, subject, summary, participants, client_domain, comm_type, body, source_id)
  • write_knowledge(topic_slug, summary, kind, client_domain, contact_email, body, date)

Key script behaviours:

  • Check if path.exists(): return — never overwrite existing files (dedup)
  • Use human-readable filenames (see basalt-format.md filename conventions)
  • Keep machine IDs in frontmatter (id field) for sync
  • Update ~/.cortex/state.json totals and run history at the end
  • Print each file written for progress tracking

Data goes directly in the script as Python data structures — not loaded from a JSON file. Claude populates the data arrays from Phase 1 analysis:

clients = [
    ("bigcolour.com.au", "Big Colour", "signage",
     "Signage company. Justin is director. Active client with L2Chat agent.",
     [("Justin Big Colour", "Director")]),
    # ... more clients
]

for domain, name, industry, summary, contacts in clients:
    write_client(domain, name, industry, summary, contacts)

Common Arguments

ArgumentEffect
--dry-runPrint what would be written, don't touch disk
--from YYYY-MM-DDOnly process items from this date onward
--batch-size NProcess N items per run (default: 50)
--source SOURCEWhich source to mine

Environment

VariableDefaultPurpose
CORTEX_DIR~/Documents/basalt-cortexVault root (syncs to basaltcortex.com)
CORTEX_STATE~/.cortex/state.jsonCursor + run history
CORTEX_OWNER_EMAILjeremy@jezweb.netYour email — excluded from contacts

Query Mode

Search across Basalt files. Claude can do this natively — no script needed.

Commands

What user saysAction
"cortex search QUERY"Grep frontmatter + content across all files
"what do I know about COMPANY"Read clients/{domain}.md + find related comms and knowledge
"cortex contacts"List all files in contacts/ with name and email from frontmatter
"cortex client DOMAIN"Full dossier — client file + linked contacts + recent comms + facts
"cortex export TYPE"Export to CSV or JSON

Search Pattern

# Keyword search across all Basalt files
grep -rl "QUERY" ~/Documents/basalt-cortex/ --include="*.md"

# Frontmatter field search
grep -rl "client_domain: example.com" ~/Documents/basalt-cortex/ --include="*.md"

For structured queries, read frontmatter with Python frontmatter library or parse YAML between --- markers.


Stats Mode

echo "Clients:        $(find ~/Documents/basalt-cortex/clients -name '*.md' 2>/dev/null | wc -l)"
echo "Contacts:       $(find ~/Documents/basalt-cortex/contacts -name '*.md' 2>/dev/null | wc -l)"
echo "Communications: $(find ~/Documents/basalt-cortex/communications -name '*.md' 2>/dev/null | wc -l)"
echo "Knowledge:      $(find ~/Documents/basalt-cortex/knowledge -name '*.md' 2>/dev/null | wc -l)"
echo "Notes:          $(find ~/Documents/basalt-cortex/notes -name '*.md' 2>/dev/null | wc -l)"

Also read state.json for last run date, cursor positions, and run history.


Sync Mode

Files in ~/Documents/basalt-cortex/ auto-sync to basaltcortex.com via the basalt-cortex CLI tray daemon. No manual sync needed.

The daemon uses chokidar to watch for file changes and pushes to the API with content hash comparison (skip unchanged files) and last-write-wins conflict resolution.

Start daemon: basalt-cortex tray (runs in system tray) Manual push: basalt-cortex push Manual pull: basalt-cortex pull Bidirectional: basalt-cortex sync (watches local + polls remote every 30s)


Scheduling

MethodHow
Claude Code CoworkScheduled task: "Run basalt-cortex mine gmail" > Daily
Cron0 6 * * * ANTHROPIC_API_KEY=sk-... python3 ~/.jez/scripts/cortex-mine-gmail.py
/loop/loop 24h basalt-cortex mine gmail

References

WhenRead
Before any file operationsreferences/basalt-format.md
When extracting semantic fields from threadsreferences/field-catalog.md
Per-source fetch and extract patternsreferences/source-patterns.md
Before processing raw contentreferences/prefilter-patterns.md
When syncing to Frond/D1/Vectorizereferences/sync-patterns.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.89%
按下载量换算94

Claude

28.28%
按下载量换算76

Cursor

19.86%
按下载量换算53

Gemini CLI

10.17%
按下载量换算27

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills