reportify-cli 0.1.26__tar.gz → 0.1.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/PKG-INFO +1 -1
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/pyproject.toml +1 -1
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/skills/reportify-agent/SKILL.md +9 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/.gitignore +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/Makefile +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/README.md +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/scripts/README.md +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/scripts/bump_version.sh +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/scripts/publish.sh +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/skills/reportify-ai/SKILL.md +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/skills/reportify-ai/references/API_REFERENCE.md +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/skills/reportify-ai/references/COMMANDS.md +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/__init__.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/client.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/__init__.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/agent.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/channels.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/concepts.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/docs.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/following.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/kb.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/macro.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/quant.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/search.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/stock.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/timeline.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/commands/user.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/main.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/output.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/params.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/settings.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/src/utils.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/__init__.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/integration/test_docs_integration.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/integration/test_stock_integration.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/test_commands/__init__.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/test_commands/test_docs.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/test_commands/test_quant.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/tests/test_commands/test_search.py +0 -0
- {reportify_cli-0.1.26 → reportify_cli-0.1.27}/uv.lock +0 -0
|
@@ -9,6 +9,15 @@ Reportify is an **external investment agent platform** (NOT an OpenClaw built-in
|
|
|
9
9
|
|
|
10
10
|
Do NOT use for simple data retrieval (stock quotes, single search, financial statements) — use `$search`, `$stock`, `$quant` commands instead.
|
|
11
11
|
|
|
12
|
+
## Shortcut Commands
|
|
13
|
+
|
|
14
|
+
| Shortcut | Equivalent |
|
|
15
|
+
|----------|-----------|
|
|
16
|
+
| `$agent` | `reportify-cli agent` |
|
|
17
|
+
| `$search` | `reportify-cli search` |
|
|
18
|
+
| `$stock` | `reportify-cli stock` |
|
|
19
|
+
| `$quant` | `reportify-cli quant` |
|
|
20
|
+
|
|
12
21
|
## When to Use
|
|
13
22
|
|
|
14
23
|
- **Deep document research**: "What did TSMC say about CoWoS in 2025Q3 earnings call?"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{reportify_cli-0.1.26 → reportify_cli-0.1.27}/skills/reportify-ai/references/API_REFERENCE.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|