reportify-cli 0.1.24__tar.gz → 0.1.26__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.24 → reportify_cli-0.1.26}/PKG-INFO +1 -1
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/pyproject.toml +1 -1
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/skills/reportify-agent/SKILL.md +4 -3
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/.gitignore +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/Makefile +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/README.md +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/scripts/README.md +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/scripts/bump_version.sh +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/scripts/publish.sh +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/skills/reportify-ai/SKILL.md +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/skills/reportify-ai/references/API_REFERENCE.md +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/skills/reportify-ai/references/COMMANDS.md +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/__init__.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/client.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/__init__.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/agent.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/channels.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/concepts.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/docs.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/following.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/kb.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/macro.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/quant.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/search.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/stock.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/timeline.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/commands/user.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/main.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/output.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/params.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/settings.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/src/utils.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/__init__.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/integration/test_docs_integration.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/integration/test_stock_integration.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/test_commands/__init__.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/test_commands/test_docs.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/test_commands/test_quant.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/tests/test_commands/test_search.py +0 -0
- {reportify_cli-0.1.24 → reportify_cli-0.1.26}/uv.lock +0 -0
|
@@ -22,6 +22,7 @@ Do NOT use for simple data retrieval (stock quotes, single search, financial sta
|
|
|
22
22
|
### Step 1: Create conversation
|
|
23
23
|
|
|
24
24
|
`conversation_type` must be `"bot_chat"` — other types will not trigger the callback hook.
|
|
25
|
+
`title` is optional — if provided, use the user's question (truncated). If omitted, auto-set from the first chat message.
|
|
25
26
|
`agent_id` is optional — if omitted, the system default agent is used.
|
|
26
27
|
|
|
27
28
|
```bash
|
|
@@ -30,11 +31,11 @@ CONV_ID=$(echo "$RESULT" | python3 -c "import sys,json; print(json.load(sys.stdi
|
|
|
30
31
|
TASK_URL=$(echo "$RESULT" | python3 -c "import sys,json; print(json.load(sys.stdin).get('url',''))")
|
|
31
32
|
```
|
|
32
33
|
|
|
33
|
-
`title` is optional — if provided, use the user's question (truncated). If omitted, auto-set from the first chat message.
|
|
34
|
-
|
|
35
34
|
### Step 2: Send task in background mode
|
|
36
35
|
|
|
37
|
-
|
|
36
|
+
**CRITICAL: Pass the user's original question verbatim as `message` — do NOT rephrase, translate, summarize, or modify it in any way.** The Reportify Agent needs the exact original text to work correctly.
|
|
37
|
+
|
|
38
|
+
Use `background: true` so the command returns immediately — the agent will process asynchronously.
|
|
38
39
|
|
|
39
40
|
```bash
|
|
40
41
|
CHAT_RESULT=$($agent chat --input "{\"conversation_id\": ${CONV_ID}, \"message\": \"用户的问题\", \"background\": true}")
|
|
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.24 → reportify_cli-0.1.26}/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
|