@evatick/skill 0.4.1 → 0.4.2
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.
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ Ask Codex:
|
|
|
26
26
|
- “查询平安银行最近三个交易日的前复权日线。”
|
|
27
27
|
- “检查 000001 是股票还是指数。”
|
|
28
28
|
- “查询沪深 300 的指数成分并导出 CSV。”
|
|
29
|
+
- “分别查询 Binance 和 Coinbase 的 BTC-USDT 行情,不要混用交易所。”
|
|
29
30
|
|
|
30
31
|
The Skill helps Codex select and sequence the appropriate `eva` commands from a
|
|
31
32
|
natural-language request.
|
|
@@ -52,9 +53,11 @@ routing, fallback, retries, normalization, and catalog persistence.
|
|
|
52
53
|
- Does not invent unsupported commands, markets, or asset capabilities.
|
|
53
54
|
- Treats market data as research and reference material, not investment advice.
|
|
54
55
|
|
|
55
|
-
The current
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
The current service contract covers mainland China A-shares, Chinese indices,
|
|
57
|
+
official CFFEX, SHFE, INE, and CZCE futures, and exchange-scoped Binance and
|
|
58
|
+
Coinbase cryptocurrency market data. Futures support unadjusted daily bars.
|
|
59
|
+
Cryptocurrency commands require an explicit venue. Availability depends on the
|
|
60
|
+
configured service and its enabled providers.
|
|
58
61
|
|
|
59
62
|
## Update
|
|
60
63
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evatick/skill",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Codex Skill for discovering instruments and querying financial data through the EVA Tick CLI",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"automation"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@evatick/cli": "0.4.
|
|
36
|
+
"@evatick/cli": "0.4.2"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
package/skill/eva/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: eva
|
|
3
|
-
description: Query and export mainland A-share
|
|
3
|
+
description: Query and export mainland A-share, Chinese index, mainland futures, and exchange-scoped cryptocurrency data through the locally installed EVA CLI and EVA service. Use for instrument discovery; stock, index, futures, or crypto quotes and bars; index constituents; service health checks; and CLI HTTP or authentication troubleshooting.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Use EVA
|
|
@@ -25,12 +25,13 @@ v1 command tree, output options, configuration, and error handling.
|
|
|
25
25
|
|
|
26
26
|
- Use named options only.
|
|
27
27
|
- Prefer canonical instrument IDs when a symbol or name is ambiguous.
|
|
28
|
+
- For cryptocurrency queries, always pass `--venue BINANCE` or `--venue COINBASE`; never combine or substitute prices across venues.
|
|
28
29
|
- Use ISO dates such as `2026-08-15` for `--start`, `--end`, and `--as-of`.
|
|
29
30
|
- Use `--output PATH` for large results. Add `--format` only to select `json`, `jsonl`, `csv`, or `parquet`.
|
|
30
31
|
- Do not add `--overwrite` without user authorization.
|
|
31
32
|
- Never expose API keys from environment variables or configuration files.
|
|
32
33
|
- Let the EVA service handle provider routing. Report retryable service failures instead of calling providers directly.
|
|
33
|
-
- Do not invent unsupported commands for funds,
|
|
34
|
+
- Futures support unadjusted daily bars from CFFEX, SHFE, INE, and CZCE. Do not invent unsupported commands for funds, options, bonds, FX, macro data, calendars, or alternative data.
|
|
34
35
|
|
|
35
36
|
## Quick sequence
|
|
36
37
|
|
|
@@ -39,4 +40,5 @@ eva health
|
|
|
39
40
|
eva instrument search --query 平安银行 --type equity
|
|
40
41
|
eva stock bars --help
|
|
41
42
|
eva stock bars --symbol 000001 --start 2026-08-01 --end 2026-08-15 --limit 20
|
|
43
|
+
eva crypto quotes --symbol BTC-USDT --venue BINANCE
|
|
42
44
|
```
|
|
@@ -26,21 +26,32 @@ eva health
|
|
|
26
26
|
eva version
|
|
27
27
|
eva config set|show
|
|
28
28
|
|
|
29
|
-
eva instrument list [--type equity|index] [--venue VENUE] [--publisher PUBLISHER]
|
|
30
|
-
eva instrument search --query TEXT [--type equity|index]
|
|
31
|
-
eva instrument resolve --query TEXT [--type equity|index]
|
|
29
|
+
eva instrument list [--type equity|index|future|crypto] [--venue VENUE] [--publisher PUBLISHER]
|
|
30
|
+
eva instrument search --query TEXT [--type equity|index|future|crypto] [--venue VENUE]
|
|
31
|
+
eva instrument resolve --query TEXT [--type equity|index|future|crypto] [--venue VENUE]
|
|
32
32
|
eva instrument show --id CANONICAL_ID
|
|
33
33
|
|
|
34
34
|
eva stock quotes --symbol SYMBOL_OR_ID
|
|
35
|
-
eva stock bars --symbol SYMBOL_OR_ID [--interval INTERVAL] [--start DATE] [--end DATE]
|
|
35
|
+
eva stock bars --symbol SYMBOL_OR_ID [--interval INTERVAL] [--start DATE] [--end DATE] [--adjustment none|forward|backward] [--as-of DATE]
|
|
36
36
|
|
|
37
37
|
eva index quotes --symbol SYMBOL_OR_ID
|
|
38
38
|
eva index bars --symbol SYMBOL_OR_ID [--interval INTERVAL] [--start DATE] [--end DATE]
|
|
39
39
|
eva index constituents --symbol SYMBOL_OR_ID [--as-of DATE]
|
|
40
|
+
|
|
41
|
+
eva futures quotes --symbol SYMBOL_OR_ID
|
|
42
|
+
eva futures bars --symbol SYMBOL_OR_ID [--interval 1d] [--start DATE] [--end DATE]
|
|
43
|
+
|
|
44
|
+
eva crypto quotes --symbol SYMBOL_OR_ID --venue BINANCE|COINBASE
|
|
45
|
+
eva crypto bars --symbol SYMBOL_OR_ID --venue BINANCE|COINBASE [--interval INTERVAL] [--start DATE] [--end DATE]
|
|
40
46
|
```
|
|
41
47
|
|
|
42
48
|
Supported bar intervals are `1m`, `5m`, `15m`, `30m`, `60m`, `1d`, `1w`, and
|
|
43
|
-
`1mo`.
|
|
49
|
+
`1mo`. Stock bars can be forward- or backward-adjusted. `--as-of` selects the
|
|
50
|
+
forward-adjustment anchor date; indices and cryptocurrencies only support
|
|
51
|
+
unadjusted bars. Coinbase supports `1m`, `5m`, `15m`, `60m`, and `1d`; Binance
|
|
52
|
+
supports every listed interval. Cryptocurrency commands require an exchange
|
|
53
|
+
venue and never fall back to the other exchange. Chinese futures use official
|
|
54
|
+
CFFEX, SHFE, INE, and CZCE sources and support unadjusted daily bars.
|
|
44
55
|
|
|
45
56
|
## Results and files
|
|
46
57
|
|