pm-search

Solid

Use when: 需要进行市场调研数据收集、竞品信息采集、行业舆情监控、合规政策检查 Do NOT use when: 已有完整数据无需补充、仅需内部数据分析无需外部信息

Data & Documents 41 stars 6 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

## Preamble (run first) ```bash bash "$(dirname "${BASH_SOURCE[0]}")"/check-update.sh 2>/dev/null || true # 读取技能包版本号 SKILL_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" 2>/dev/null && pwd)" || true if [ -f "$SKILL_ROOT/VERSION" ]; then echo "📦 super-pm $(cat "$SKILL_ROOT/VERSION")"; fi # 创建需求调研目录 mkdir -p docs/01-需求调研 # 自动发现 AnySearch CLI 安装位置 # 支持 Claude Code / OpenCode / OpenClaw / Cursor / pip install / 手动克隆等多种安装方式 ANYSEARCH_CLI="" for candidate in \ "$HOME/.claude/skills/anysearch/scripts/anysearch_cli.py" \ "$HOME/.opencode/skills/anysearch/scripts/anysearch_cli.py" \ "$HOME/.openclaw/skills/anysearch/scripts/anysearch_cli.py" \ "$HOME/.cursor/skills/anysearch/scripts/anysearch_cli.py" \ "$HOME/skills/anysearch/scripts/anysearch_cli.py" \ "$HOME/.anysearch/scripts/anysearch_cli.py" \ "/usr/local/bin/anysearch_cli.py" \ "$HOME/bin/anysearch_cli.py"; do if [ -f "$candidate" ]; then ANYSEARCH_CLI="$candidate" break fi done # pip install 方式 if [ -z "$ANYSEARCH_CLI" ]; then PIP_LOCATION=$(python3 -c "import importlib.util; spec=importlib.util.find_spec('anysearch'); print(spec.submodule_search_locations[0] if spec and spec.submodule_search_locations else '')" 2>/dev/null) if [ -n "$PIP_LOCATION" ] && [ -f "$PIP_LOCATION/scripts/anysearch_cli.py" ]; then ANYSEARCH_CLI="$PIP_LOCATION/scripts/anysearch_cli.py" fi fi # which 方式 if [ -z "$ANYSEARCH_CLI" ]; then WHICH_CLI=$(which anysearch_cli.py 2>/dev/null) if [ -n "$WHICH_CLI" ] && [ ...

Details

Author
konglong87
Repository
konglong87/superPM
Created
4 months ago
Last Updated
yesterday
Language
JavaScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category