truenas: v1.0.0 (new to repo) — workspace-context-organization, youtube-content: add version field — ecosystem-surveillance: v1.1.0 sync

This commit is contained in:
Hermes Agent
2026-07-05 17:30:28 -05:00
parent d25b048a72
commit c6ca1d9a9b
4 changed files with 115 additions and 2 deletions

View File

@@ -1,14 +1,16 @@
--- ---
name: ecosystem-surveillance name: ecosystem-surveillance
description: Multi-platform ecosystem research and surveillance using searxng as primary search, supplemented by GitHub API, site-specific APIs, and direct page fetches. Deduplicates against Qdrant vectors and produces structured markdown research artifacts. description: Multi-platform ecosystem research and surveillance using searxng as primary search, supplemented by GitHub API, site-specific APIs, and direct page fetches. Deduplicates against Qdrant vectors and produces structured markdown research artifacts.
version: 1.0.0 version: 1.1.0
category: research category: research
author: hermes author: hermes
--- ---
# Ecosystem Surveillance Research # Ecosystem Surveillance Research
Trigger: user issues "fringe research" or requests systematic, multi-platform ecosystem surveillance across Reddit, GitHub, Twitter/X, DuckDuckGo, and arXiv. They expect comprehensive coverage, deduplication against existing Qdrant vectors, and a structured markdown research artifact as output. Trigger: user issues "fringe research", "deep research", "deep dive", or any request for exhaustive, multi-source investigation (phone numbers, people, companies, technologies, markets, etc.). They expect comprehensive coverage — multiple search angles, trail-following, scraping of result pages, no quitting on empty results. Deduplication against existing Qdrant vectors and a structured markdown research artifact as output.
**"Deep research" is NOT a casual lookup.** It means: try every angle, scrape result pages, follow links, cross-reference, and persist through empty results. The user does not care how long it takes. Never stop after 2-3 searches — that's a casual lookup, not deep research.
## Core Search Strategy ## Core Search Strategy
@@ -133,6 +135,8 @@ Sources: <count>
4. **Narrow queries beat broad ones**: `"RTX 4090 mining profitability 2025"` returns better results than `"GPU crypto"`. 4. **Narrow queries beat broad ones**: `"RTX 4090 mining profitability 2025"` returns better results than `"GPU crypto"`.
5. **Browser tools are slow**: For plain-text endpoints (`.md`, `.txt`, `.json`, raw GitHub), prefer `curl` in terminal. Use `browser_navigate` only for interactive JS-heavy pages. 5. **Browser tools are slow**: For plain-text endpoints (`.md`, `.txt`, `.json`, raw GitHub), prefer `curl` in terminal. Use `browser_navigate` only for interactive JS-heavy pages.
6. **Verify from multiple sources**: Mining profitability numbers, prices, and difficulty change constantly. Cross-reference whattomine.com, 2cryptocalc.com, and nicehash.com before presenting a figure as current. 6. **Verify from multiple sources**: Mining profitability numbers, prices, and difficulty change constantly. Cross-reference whattomine.com, 2cryptocalc.com, and nicehash.com before presenting a figure as current.
7. **Empty results are NOT a stop signal**: When a search returns nothing, that's the START of deep research, not the end. Try: different query formulations, different search engines, phone lookup sites, reverse directories, social media searches, WHOIS, cached pages, archive.org. The user said "deep research" — they expect persistence through empty results. Stopping after 2-3 searches is a casual lookup, not deep research.
8. **Recognize the trigger immediately**: "deep research", "deep dive", "fringe research" — these are NOT casual lookups. Load this skill on first sight of those phrases. Do not treat them as one-off web searches.
## References ## References

107
truenas/SKILL.md Normal file
View File

@@ -0,0 +1,107 @@
---
name: truenas
description: "Access the TrueNAS server at 10.0.0.117 (alias green) — browse shares, mount, search, and copy files. Two SMB shares: data (read-only) and proxmoxBackup."
version: 1.0.0
tags: [truenas, nas, smb, storage, green, network-storage]
---
# TrueNAS Access
**Server:** 10.0.0.117 (alias: `green`, `smb://green.local/`)
**Protocol:** SMB (SMB1 disabled)
**Auth:** None — guest access on both shares
## Shares
| Share | Access | Contents |
|---|---|---|
| `data` | Read-only, no creds | Backups, media, docs, docker configs, photos, videos, AI files |
| `proxmoxBackup` | Read-write, no creds | Proxmox dumps, UniFi backups, snippets, images, i9Bkup, templates |
## Quick Commands
### List shares
```bash
smbclient -N -L //10.0.0.117
```
### Browse a share (interactive)
```bash
smbclient -N //10.0.0.117/data
smbclient -N //10.0.0.117/proxmoxBackup
```
### List top-level directories (non-interactive)
```bash
smbclient -N //10.0.0.117/data -c "ls"
smbclient -N //10.0.0.117/proxmoxBackup -c "ls"
```
### List contents of a specific directory
```bash
smbclient -N //10.0.0.117/data -c "ls <dirname>/*"
```
### Search for files by pattern
```bash
smbclient -N //10.0.0.117/data -c "ls *" 2>/dev/null | grep -i "<pattern>"
```
### Download a single file
```bash
smbclient -N //10.0.0.117/data -c "cd <dirname>; get <filename> <local_path>"
```
### Download a directory recursively
```bash
smbclient -N //10.0.0.117/data -c "cd <dirname>; prompt OFF; recurse ON; mget *"
```
### Mount read-only (for persistent access)
```bash
sudo mkdir -p /mnt/green_data
sudo mount.cifs //10.0.0.117/data /mnt/green_data -o ro,guest,vers=3.0
```
### Unmount
```bash
sudo umount /mnt/green_data
```
## data Share — Top-Level Contents
| Directory | Description |
|---|---|
| `ai/` | AI-related files |
| `adm1n-ROG/`, `adm1n-ROG-1/` | ROG machine backups |
| `AllPictures/`, `Picture_All_Sorted/`, `Pictures/`, `CurrentPics/`, `Photo/`, `images/` | Photo collections |
| `Video/`, `VideoAllSorted/`, `Z_Movies/`, `Z_TV/` | Video/media |
| `BackupData/`, `NAS8_BKUP/`, `MS01_Backup/`, `MSI_Backup/`, `PC_Backup/`, `i7/` | Machine backups |
| `DOCKER/` | Docker configurations |
| `KeepForeverDocs/`, `PDF Document/`, `DOCS FOR DEB2/` | Documents |
| `MINI_WEB_SITE/` | Website files |
| `minix/`, `minix2/` | Minix-related |
| `Sorted/` | Sorted files |
| `UnifiProtect/` | UniFi Protect backups |
## proxmoxBackup Share — Top-Level Contents
| Directory | Description |
|---|---|
| `dump/` | Proxmox VM/CT dumps |
| `i9Bkup/` | i9 machine backup |
| `UniFi/` | UniFi controller backups |
| `snippets/` | Code/config snippets |
| `images/` | Images |
| `template/` | Templates |
| `import/` | Import files |
| `private/` | Private data |
## Pitfalls
- **SMB1 is disabled** — `-N` (no password) works for guest access. If you get auth errors, the share may have been reconfigured.
- **data share is read-only** — you cannot write, delete, or modify files on the `data` share via SMB. Use `proxmoxBackup` for writes.
- **smbclient needs sudo** on some systems if the smbclient binary isn't in the user's PATH or if mount.cifs is used.
- **Spaces in directory names** — quote paths with spaces, e.g., `"PDF Document"` or `"DOCS FOR DEB2"`.
- **Large transfers** — for bulk downloads, mount with `mount.cifs` and use `cp`/`rsync` instead of smbclient's `mget`.
- **No workgroup** — SMB1 disabled means no workgroup browsing. Direct IP access only.

View File

@@ -2,6 +2,7 @@
name: workspace-context-organization name: workspace-context-organization
title: Workspace Context Organization title: Workspace Context Organization
description: Manage persistent user context by moving full operational details into per-workspace README files, keeping agent memory compact as pointer references only. description: Manage persistent user context by moving full operational details into per-workspace README files, keeping agent memory compact as pointer references only.
version: 1.0.0
--- ---
# Workspace Context Organization # Workspace Context Organization

View File

@@ -1,6 +1,7 @@
--- ---
name: youtube-content name: youtube-content
description: "YouTube transcripts to summaries, threads, blogs." description: "YouTube transcripts to summaries, threads, blogs."
version: 1.0.0
platforms: [linux, macos, windows] platforms: [linux, macos, windows]
--- ---