원클릭으로
enterprise-data-retrieval
Retrieve and aggregate information across multiple enterprise data sources
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Retrieve and aggregate information across multiple enterprise data sources
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Handles reading, populating, and saving .docx files using the python-docx library. Use this skill for any tasks involving template filling or modifying Word documents.
Perform various data analysis on SEC 13-F and obtain some insights of fund activities such as number of holdings, AUM, and change of holdings between two quarters.
This skill includes search capability in 13F, such as fuzzy search a fund information using possibly inaccurate name, or fuzzy search a stock cusip info using its name.
A comprehensive PDF toolkit for advanced data extraction and document analysis. Beyond text and table extraction, this tool is optimized for visual layout reasoning: it can map graphical elements to coordinates (such as determining appointment times based on their position on a calendar timeline) and identify color-coded features (e.g., distinguishing high-priority blocks from flexible blue-colored entries). Use this skill when the task requires interpreting schedule layouts, calculating durations from visual spans, or resolving scheduling conflicts based on the spatial and color properties of a PDF document.
Build deterministic, verifiable data visualizations with D3.js (v6). Generate standalone HTML/SVG (and optional PNG) from local data files without external network dependencies. Use when tasks require charts, plots, axes/scales, legends, tooltips, or data-driven SVG output.
invoke this skill when you need to perform database search for travel planning. This skill provides some useful pre-packaged tools to look up accommodations, attractions, cities, driving distance, flights, and restaurants from the bundled dataset.
| name | enterprise-data-retrieval |
| description | Retrieve and aggregate information across multiple enterprise data sources |
Techniques for finding specific information across multiple enterprise data files (employee records, product files, team information) and aggregating results.
/root/DATA/
├── metadata/
│ ├── employee.json # Employee records with IDs and names
│ ├── customers_data.json # Customer information
│ └── salesforce_team.json # Sales team information
└── products/
├── ContentForce.json # Product-specific data (Slack, docs, etc.)
├── SecurityForce.json # Other products...
└── ...
import json
import os
def load_metadata():
"""Load all metadata files"""
metadata_path = '/root/DATA/metadata'
metadata = {}
for file in os.listdir(metadata_path):
if file.endswith('.json') and not file.endswith(':Zone.Identifier'):
with open(os.path.join(metadata_path, file), 'r') as f:
metadata[file.replace('.json', '')] = json.load(f)
return metadata
# Usage
metadata = load_metadata()
employees = metadata['employee']
import json
def load_product_data(product_name):
"""Load product JSON data"""
path = f'/root/DATA/products/{product_name}.json'
with open(path, 'r') as f:
return json.load(f)
# Usage
contentforce_data = load_product_data('ContentForce')
import json
import re
def find_competitor_mentions(product_data):
"""Find all mentions of competitor products"""
competitors = {}
messages = product_data.get('slack', [])
for msg in messages:
text = msg.get('Message', {}).get('text', '')
# Look for competitor product mentions (heuristic: Force/Genie products)
if 'demo' in text.lower() or 'url' in text.lower():
# Extract URLs
urls = re.findall(r'https?://[^\s\)]+', text)
if urls:
user_id = msg.get('Message', {}).get('User', {}).get('userId')
competitors[user_id] = urls
return competitors
def get_employee_info(employee_id, employee_data):
"""Get employee info by ID"""
return employee_data.get(employee_id, {})
def get_employee_name(employee_id, employee_data):
"""Get employee name by ID"""
info = get_employee_info(employee_id, employee_data)
return info.get('name', 'Unknown')
import json
# Load product data
with open('/root/DATA/products/ContentForce.json', 'r') as f:
product = json.load(f)
# Load employee reference
with open('/root/DATA/metadata/employee.json', 'r') as f:
employees = json.load(f)
# For reports: find who authored/reviewed
# For competitors: find who mentioned them
# For URLs: extract all shared links
# Convert to lists, deduplicate with sets
results = list(set(collected_ids))
# Verify IDs exist in employee database
valid_ids = [eid for eid in results if eid in employees]
# Safe nested access
def safe_get(obj, *keys, default=None):
"""Safely navigate nested dicts"""
for key in keys:
obj = obj.get(key) if isinstance(obj, dict) else None
if obj is None:
return default
return obj
# Usage
user_id = safe_get(msg, 'Message', 'User', 'userId')
Results should be formatted as lists for consistency:
["eid_xxx"]["eid_xxx", "eid_yyy", "eid_zzz"][]