agent-finance-cli-linux-arm64 0.4.1 → 0.5.0
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/bin/agent-finance +0 -0
- package/package.json +1 -1
- package/skill-data/core/locales/ja-JP/SKILL.md +107 -0
- package/skill-data/core/locales/ja-JP/references/command-map.md +156 -0
- package/skill-data/core/locales/ko-KR/SKILL.md +107 -0
- package/skill-data/core/locales/ko-KR/references/command-map.md +156 -0
- package/skill-data/core/locales/zh-CN/SKILL.md +107 -0
- package/skill-data/core/locales/zh-CN/references/command-map.md +156 -0
- package/skill-data/crypto/locales/ja-JP/SKILL.md +60 -0
- package/skill-data/crypto/locales/ko-KR/SKILL.md +60 -0
- package/skill-data/crypto/locales/zh-CN/SKILL.md +60 -0
- package/skill-data/history-indicators/locales/ja-JP/SKILL.md +48 -0
- package/skill-data/history-indicators/locales/ko-KR/SKILL.md +48 -0
- package/skill-data/history-indicators/locales/zh-CN/SKILL.md +48 -0
- package/skill-data/prediction-markets/locales/ja-JP/SKILL.md +42 -0
- package/skill-data/prediction-markets/locales/ko-KR/SKILL.md +42 -0
- package/skill-data/prediction-markets/locales/zh-CN/SKILL.md +42 -0
- package/skill-data/price/locales/ja-JP/SKILL.md +51 -0
- package/skill-data/price/locales/ko-KR/SKILL.md +51 -0
- package/skill-data/price/locales/zh-CN/SKILL.md +51 -0
- package/skill-data/profile/locales/ja-JP/SKILL.md +122 -0
- package/skill-data/profile/locales/ko-KR/SKILL.md +122 -0
- package/skill-data/profile/locales/zh-CN/SKILL.md +122 -0
- package/skill-data/providers/locales/ja-JP/SKILL.md +27 -0
- package/skill-data/providers/locales/ko-KR/SKILL.md +27 -0
- package/skill-data/providers/locales/zh-CN/SKILL.md +27 -0
- package/skill-data/research-data/locales/ja-JP/SKILL.md +38 -0
- package/skill-data/research-data/locales/ko-KR/SKILL.md +38 -0
- package/skill-data/research-data/locales/zh-CN/SKILL.md +38 -0
- package/skill-data/tui/locales/ja-JP/SKILL.md +46 -0
- package/skill-data/tui/locales/ko-KR/SKILL.md +46 -0
- package/skill-data/tui/locales/zh-CN/SKILL.md +46 -0
package/bin/agent-finance
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: core
|
|
3
|
+
description: agent-finance の市場価格、セッション、crypto、履歴、リサーチデータ、provider カバレッジ、予測市場、プロキシ文脈、安全な情報源処理の入口ガイド。コマンド利用前に読む。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agent-finance core skill
|
|
7
|
+
|
|
8
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
9
|
+
|
|
10
|
+
最初に読む入口です。必要に応じて narrower runtime skill を読み込み、price、session、history、research、crypto、Polymarket、profile、browser boundary を監査可能な流れにします。
|
|
11
|
+
|
|
12
|
+
## 開始
|
|
13
|
+
|
|
14
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
agent-finance skills list
|
|
18
|
+
agent-finance market providers
|
|
19
|
+
agent-finance capabilities
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agent-finance tui --symbols AAPL,CRDO,BTCUSDT
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## タスクルーター
|
|
27
|
+
|
|
28
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
agent-finance skills get price
|
|
32
|
+
agent-finance skills get history-indicators
|
|
33
|
+
agent-finance skills get research-data
|
|
34
|
+
agent-finance skills get crypto
|
|
35
|
+
agent-finance skills get prediction-markets
|
|
36
|
+
agent-finance skills get providers
|
|
37
|
+
agent-finance skills get profile
|
|
38
|
+
agent-finance skills get tui
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## デフォルト証拠フロー
|
|
42
|
+
|
|
43
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
agent-finance market price CRDO
|
|
47
|
+
agent-finance market price CRDO --json
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agent-finance market sessions CRDO
|
|
52
|
+
agent-finance market sessions LITE --proxy-symbol LITEUSDT
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
agent-finance market history LITE --interval 1d --range 1mo --adjustment auto --limit 30
|
|
57
|
+
agent-finance market history LITE --interval 1m --range 5d --session extended --adjustment raw --no-actions --limit 120
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
agent-finance market fundamentals CRDO
|
|
62
|
+
agent-finance market fundamentals CRDO --provider sec-edgar
|
|
63
|
+
agent-finance market analysis CRDO
|
|
64
|
+
agent-finance market options CRDO
|
|
65
|
+
agent-finance market ownership CRDO
|
|
66
|
+
agent-finance market events CRDO --provider sec-edgar
|
|
67
|
+
agent-finance market news CRDO
|
|
68
|
+
agent-finance market read-url "https://www.sec.gov/Archives/edgar/data/0001807794/000162828026014017/crdo-20260131.htm"
|
|
69
|
+
agent-finance market search "optical interconnect"
|
|
70
|
+
agent-finance market screen day_gainers
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
agent-finance market polymarket search "spacex ipo" --limit 5
|
|
75
|
+
agent-finance market polymarket market MARKET_ID_OR_SLUG
|
|
76
|
+
agent-finance skills get prediction-markets
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
agent-finance market crypto snapshot BTC/USDT
|
|
81
|
+
agent-finance market crypto sentiment BTCUSDT
|
|
82
|
+
agent-finance market price BTC/USDT --asset crypto
|
|
83
|
+
agent-finance market history BTC/USDT --asset crypto --interval 1h --limit 48
|
|
84
|
+
agent-finance market crypto quote BTC/USDT
|
|
85
|
+
agent-finance market crypto book BTC/USDT --provider okx --limit 20
|
|
86
|
+
agent-finance market crypto discover --provider coingecko --kind trending
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
agent-finance skills get profile
|
|
91
|
+
agent-finance account permissions --profile default --json
|
|
92
|
+
agent-finance account balances --profile default --json
|
|
93
|
+
agent-finance account positions --profile default --json
|
|
94
|
+
agent-finance risk explain --profile default
|
|
95
|
+
agent-finance order submit INTENT_ID --profile default
|
|
96
|
+
agent-finance order query BTCUSDT --profile default --market spot --client-order-id CLIENT_ORDER_ID --json
|
|
97
|
+
agent-finance order open --profile default --market spot --symbol BTCUSDT --json
|
|
98
|
+
agent-finance transfer history --profile live --direction spot-to-usds-futures --size 20 --json
|
|
99
|
+
agent-finance state create --profile default --kind leverage --symbol BTCUSDT --leverage 2
|
|
100
|
+
agent-finance state create --profile default --kind position-mode --position-mode hedge
|
|
101
|
+
agent-finance state submit INTENT_ID --profile default
|
|
102
|
+
agent-finance audit export --json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## 判断ルール
|
|
106
|
+
|
|
107
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# agent-finance full core skill
|
|
2
|
+
|
|
3
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
4
|
+
|
|
5
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
6
|
+
|
|
7
|
+
## Command map
|
|
8
|
+
|
|
9
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
10
|
+
|
|
11
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
agent-finance skills list
|
|
15
|
+
agent-finance skills get core
|
|
16
|
+
agent-finance skills get price
|
|
17
|
+
agent-finance skills get research-data
|
|
18
|
+
agent-finance skills get providers
|
|
19
|
+
agent-finance skills get crypto
|
|
20
|
+
agent-finance skills get prediction-markets
|
|
21
|
+
agent-finance skills get history-indicators
|
|
22
|
+
agent-finance skills get tui
|
|
23
|
+
agent-finance tui --symbols AAPL,CRDO,BTCUSDT
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## TUI chart workbench
|
|
27
|
+
|
|
28
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
29
|
+
|
|
30
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
agent-finance tui --symbols CRDO,LITE,AAOI --chart-preset auto
|
|
34
|
+
agent-finance tui --symbols BTC/USDT,ETH/USDT --chart-preset 1d
|
|
35
|
+
agent-finance skills get tui
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Price and sessions
|
|
39
|
+
|
|
40
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
41
|
+
|
|
42
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
agent-finance market price CRDO
|
|
46
|
+
agent-finance market price CRDO MRVL --json
|
|
47
|
+
agent-finance market sessions CRDO
|
|
48
|
+
agent-finance market sessions LITE --proxy-symbol LITEUSDT
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## History and indicators
|
|
52
|
+
|
|
53
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
54
|
+
|
|
55
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
agent-finance market history CRDO --range 1mo --interval 1d
|
|
59
|
+
agent-finance market history CRDO --range 5d --interval 1m --session extended --adjustment raw --no-actions
|
|
60
|
+
agent-finance market history CRDO --range 1y --interval 1d --adjustment auto --repair
|
|
61
|
+
agent-finance market indicators CRDO MRVL --limit 120
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Research data
|
|
65
|
+
|
|
66
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
67
|
+
|
|
68
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
agent-finance market fundamentals CRDO
|
|
72
|
+
agent-finance market fundamentals CRDO --provider sec-edgar
|
|
73
|
+
agent-finance market fundamentals CRDO --provider robinhood
|
|
74
|
+
agent-finance market fundamentals CRDO --provider cnbc
|
|
75
|
+
agent-finance market analysis CRDO
|
|
76
|
+
agent-finance market options CRDO
|
|
77
|
+
agent-finance market options CRDO --provider robinhood --count 80
|
|
78
|
+
agent-finance market ownership CRDO
|
|
79
|
+
agent-finance market events CRDO --provider sec-edgar
|
|
80
|
+
agent-finance market news CRDO
|
|
81
|
+
agent-finance market read-url "https://www.sec.gov/Archives/edgar/data/0001807794/000162828026014017/crdo-20260131.htm"
|
|
82
|
+
agent-finance market search "optical interconnect"
|
|
83
|
+
agent-finance market screen day_gainers
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Provider and proxy data
|
|
87
|
+
|
|
88
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
89
|
+
|
|
90
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
agent-finance market providers
|
|
94
|
+
agent-finance market providers --json
|
|
95
|
+
agent-finance market crypto snapshot BTC/USDT
|
|
96
|
+
agent-finance market crypto sentiment BTCUSDT
|
|
97
|
+
agent-finance market price BTC/USDT --asset crypto
|
|
98
|
+
agent-finance market crypto quote BTC/USDT
|
|
99
|
+
agent-finance market crypto candles BTC/USDT --provider coingecko --interval 1d --limit 30
|
|
100
|
+
agent-finance market crypto discover --provider okx --kind instruments --instrument swap
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Prediction markets
|
|
104
|
+
|
|
105
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
106
|
+
|
|
107
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
agent-finance market polymarket search "spacex ipo" --limit 5
|
|
111
|
+
agent-finance market polymarket search "spcex" --limit 5
|
|
112
|
+
agent-finance market polymarket market MARKET_ID_OR_SLUG --json
|
|
113
|
+
agent-finance skills get prediction-markets
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Signed profile, risk, audit
|
|
117
|
+
|
|
118
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
119
|
+
|
|
120
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
agent-finance skills get profile
|
|
124
|
+
agent-finance profile doctor --profile default
|
|
125
|
+
agent-finance account permissions --profile default --json
|
|
126
|
+
agent-finance account balances --profile default --json
|
|
127
|
+
agent-finance account positions --profile default --json
|
|
128
|
+
agent-finance risk explain --profile default
|
|
129
|
+
agent-finance risk check INTENT_ID --profile default --live
|
|
130
|
+
agent-finance order query BTCUSDT --profile default --market spot --client-order-id CLIENT_ORDER_ID --json
|
|
131
|
+
agent-finance order open --profile default --market spot --symbol BTCUSDT --json
|
|
132
|
+
agent-finance state create --profile default --kind leverage --symbol BTCUSDT --leverage 2
|
|
133
|
+
agent-finance state create --profile default --kind margin-type --symbol BTCUSDT --margin-type isolated
|
|
134
|
+
agent-finance state create --profile default --kind position-mode --position-mode hedge
|
|
135
|
+
agent-finance state submit INTENT_ID --profile default
|
|
136
|
+
agent-finance audit tail --limit 20
|
|
137
|
+
agent-finance audit export --json
|
|
138
|
+
agent-finance transfer history --profile live --direction spot-to-usds-futures --size 20 --json
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
下表の field 名と `kind` 値は machine contract なので英語のまま保持します。
|
|
142
|
+
|
|
143
|
+
| Command | `kind` | Common payload path |
|
|
144
|
+
| --- | --- | --- |
|
|
145
|
+
| `account permissions` | `api-permissions` | `payload` |
|
|
146
|
+
| `account balances` | `spot-balances` | `payload.balances` |
|
|
147
|
+
| `account positions` | `usds-futures-positions` | `payload.assets`, `payload.positions` |
|
|
148
|
+
| `order query` | `order-query` | `payload` |
|
|
149
|
+
| `order open` | `open-orders` | `payload` |
|
|
150
|
+
| `transfer history` | `transfer-history` | `payload.rows` |
|
|
151
|
+
|
|
152
|
+
## Network and browser boundaries
|
|
153
|
+
|
|
154
|
+
ローカライズ注記: これは AI Agent 向けの runtime instructions です。command、flag、provider 名、JSON field、schema key、code block は英語のまま固定し、外部の market evidence、news title、SEC text、provider 原文は翻訳しません。
|
|
155
|
+
|
|
156
|
+
この節は正しいコマンドと証拠経路を選ぶために使います。構造化データには `--json` を優先し、provider を固定するのは照合または provider 挙動の監査時だけにします。
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: core
|
|
3
|
+
description: agent-finance의 시장 가격, 세션, crypto, 히스토리, 리서치 데이터, provider 범위, 예측시장, 프록시 맥락, 안전한 소스 처리를 위한 시작 가이드. 명령 사용 전에 읽는다.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agent-finance core skill
|
|
7
|
+
|
|
8
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
9
|
+
|
|
10
|
+
먼저 읽는 진입점입니다. 필요할 때 더 좁은 runtime skill을 불러와 price, session, history, research, crypto, Polymarket, profile, browser boundary를 감사 가능한 흐름으로 연결합니다.
|
|
11
|
+
|
|
12
|
+
## 시작
|
|
13
|
+
|
|
14
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
agent-finance skills list
|
|
18
|
+
agent-finance market providers
|
|
19
|
+
agent-finance capabilities
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agent-finance tui --symbols AAPL,CRDO,BTCUSDT
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## 작업 라우터
|
|
27
|
+
|
|
28
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
agent-finance skills get price
|
|
32
|
+
agent-finance skills get history-indicators
|
|
33
|
+
agent-finance skills get research-data
|
|
34
|
+
agent-finance skills get crypto
|
|
35
|
+
agent-finance skills get prediction-markets
|
|
36
|
+
agent-finance skills get providers
|
|
37
|
+
agent-finance skills get profile
|
|
38
|
+
agent-finance skills get tui
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## 기본 증거 흐름
|
|
42
|
+
|
|
43
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
agent-finance market price CRDO
|
|
47
|
+
agent-finance market price CRDO --json
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agent-finance market sessions CRDO
|
|
52
|
+
agent-finance market sessions LITE --proxy-symbol LITEUSDT
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
agent-finance market history LITE --interval 1d --range 1mo --adjustment auto --limit 30
|
|
57
|
+
agent-finance market history LITE --interval 1m --range 5d --session extended --adjustment raw --no-actions --limit 120
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
agent-finance market fundamentals CRDO
|
|
62
|
+
agent-finance market fundamentals CRDO --provider sec-edgar
|
|
63
|
+
agent-finance market analysis CRDO
|
|
64
|
+
agent-finance market options CRDO
|
|
65
|
+
agent-finance market ownership CRDO
|
|
66
|
+
agent-finance market events CRDO --provider sec-edgar
|
|
67
|
+
agent-finance market news CRDO
|
|
68
|
+
agent-finance market read-url "https://www.sec.gov/Archives/edgar/data/0001807794/000162828026014017/crdo-20260131.htm"
|
|
69
|
+
agent-finance market search "optical interconnect"
|
|
70
|
+
agent-finance market screen day_gainers
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
agent-finance market polymarket search "spacex ipo" --limit 5
|
|
75
|
+
agent-finance market polymarket market MARKET_ID_OR_SLUG
|
|
76
|
+
agent-finance skills get prediction-markets
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
agent-finance market crypto snapshot BTC/USDT
|
|
81
|
+
agent-finance market crypto sentiment BTCUSDT
|
|
82
|
+
agent-finance market price BTC/USDT --asset crypto
|
|
83
|
+
agent-finance market history BTC/USDT --asset crypto --interval 1h --limit 48
|
|
84
|
+
agent-finance market crypto quote BTC/USDT
|
|
85
|
+
agent-finance market crypto book BTC/USDT --provider okx --limit 20
|
|
86
|
+
agent-finance market crypto discover --provider coingecko --kind trending
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
agent-finance skills get profile
|
|
91
|
+
agent-finance account permissions --profile default --json
|
|
92
|
+
agent-finance account balances --profile default --json
|
|
93
|
+
agent-finance account positions --profile default --json
|
|
94
|
+
agent-finance risk explain --profile default
|
|
95
|
+
agent-finance order submit INTENT_ID --profile default
|
|
96
|
+
agent-finance order query BTCUSDT --profile default --market spot --client-order-id CLIENT_ORDER_ID --json
|
|
97
|
+
agent-finance order open --profile default --market spot --symbol BTCUSDT --json
|
|
98
|
+
agent-finance transfer history --profile live --direction spot-to-usds-futures --size 20 --json
|
|
99
|
+
agent-finance state create --profile default --kind leverage --symbol BTCUSDT --leverage 2
|
|
100
|
+
agent-finance state create --profile default --kind position-mode --position-mode hedge
|
|
101
|
+
agent-finance state submit INTENT_ID --profile default
|
|
102
|
+
agent-finance audit export --json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## 판단 규칙
|
|
106
|
+
|
|
107
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
# agent-finance full core skill
|
|
2
|
+
|
|
3
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
4
|
+
|
|
5
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
6
|
+
|
|
7
|
+
## Command map
|
|
8
|
+
|
|
9
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
10
|
+
|
|
11
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
agent-finance skills list
|
|
15
|
+
agent-finance skills get core
|
|
16
|
+
agent-finance skills get price
|
|
17
|
+
agent-finance skills get research-data
|
|
18
|
+
agent-finance skills get providers
|
|
19
|
+
agent-finance skills get crypto
|
|
20
|
+
agent-finance skills get prediction-markets
|
|
21
|
+
agent-finance skills get history-indicators
|
|
22
|
+
agent-finance skills get tui
|
|
23
|
+
agent-finance tui --symbols AAPL,CRDO,BTCUSDT
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## TUI chart workbench
|
|
27
|
+
|
|
28
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
29
|
+
|
|
30
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
agent-finance tui --symbols CRDO,LITE,AAOI --chart-preset auto
|
|
34
|
+
agent-finance tui --symbols BTC/USDT,ETH/USDT --chart-preset 1d
|
|
35
|
+
agent-finance skills get tui
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Price and sessions
|
|
39
|
+
|
|
40
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
41
|
+
|
|
42
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
agent-finance market price CRDO
|
|
46
|
+
agent-finance market price CRDO MRVL --json
|
|
47
|
+
agent-finance market sessions CRDO
|
|
48
|
+
agent-finance market sessions LITE --proxy-symbol LITEUSDT
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
## History and indicators
|
|
52
|
+
|
|
53
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
54
|
+
|
|
55
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
agent-finance market history CRDO --range 1mo --interval 1d
|
|
59
|
+
agent-finance market history CRDO --range 5d --interval 1m --session extended --adjustment raw --no-actions
|
|
60
|
+
agent-finance market history CRDO --range 1y --interval 1d --adjustment auto --repair
|
|
61
|
+
agent-finance market indicators CRDO MRVL --limit 120
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Research data
|
|
65
|
+
|
|
66
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
67
|
+
|
|
68
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
agent-finance market fundamentals CRDO
|
|
72
|
+
agent-finance market fundamentals CRDO --provider sec-edgar
|
|
73
|
+
agent-finance market fundamentals CRDO --provider robinhood
|
|
74
|
+
agent-finance market fundamentals CRDO --provider cnbc
|
|
75
|
+
agent-finance market analysis CRDO
|
|
76
|
+
agent-finance market options CRDO
|
|
77
|
+
agent-finance market options CRDO --provider robinhood --count 80
|
|
78
|
+
agent-finance market ownership CRDO
|
|
79
|
+
agent-finance market events CRDO --provider sec-edgar
|
|
80
|
+
agent-finance market news CRDO
|
|
81
|
+
agent-finance market read-url "https://www.sec.gov/Archives/edgar/data/0001807794/000162828026014017/crdo-20260131.htm"
|
|
82
|
+
agent-finance market search "optical interconnect"
|
|
83
|
+
agent-finance market screen day_gainers
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Provider and proxy data
|
|
87
|
+
|
|
88
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
89
|
+
|
|
90
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
agent-finance market providers
|
|
94
|
+
agent-finance market providers --json
|
|
95
|
+
agent-finance market crypto snapshot BTC/USDT
|
|
96
|
+
agent-finance market crypto sentiment BTCUSDT
|
|
97
|
+
agent-finance market price BTC/USDT --asset crypto
|
|
98
|
+
agent-finance market crypto quote BTC/USDT
|
|
99
|
+
agent-finance market crypto candles BTC/USDT --provider coingecko --interval 1d --limit 30
|
|
100
|
+
agent-finance market crypto discover --provider okx --kind instruments --instrument swap
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
## Prediction markets
|
|
104
|
+
|
|
105
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
106
|
+
|
|
107
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
agent-finance market polymarket search "spacex ipo" --limit 5
|
|
111
|
+
agent-finance market polymarket search "spcex" --limit 5
|
|
112
|
+
agent-finance market polymarket market MARKET_ID_OR_SLUG --json
|
|
113
|
+
agent-finance skills get prediction-markets
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
## Signed profile, risk, audit
|
|
117
|
+
|
|
118
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
119
|
+
|
|
120
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
121
|
+
|
|
122
|
+
```bash
|
|
123
|
+
agent-finance skills get profile
|
|
124
|
+
agent-finance profile doctor --profile default
|
|
125
|
+
agent-finance account permissions --profile default --json
|
|
126
|
+
agent-finance account balances --profile default --json
|
|
127
|
+
agent-finance account positions --profile default --json
|
|
128
|
+
agent-finance risk explain --profile default
|
|
129
|
+
agent-finance risk check INTENT_ID --profile default --live
|
|
130
|
+
agent-finance order query BTCUSDT --profile default --market spot --client-order-id CLIENT_ORDER_ID --json
|
|
131
|
+
agent-finance order open --profile default --market spot --symbol BTCUSDT --json
|
|
132
|
+
agent-finance state create --profile default --kind leverage --symbol BTCUSDT --leverage 2
|
|
133
|
+
agent-finance state create --profile default --kind margin-type --symbol BTCUSDT --margin-type isolated
|
|
134
|
+
agent-finance state create --profile default --kind position-mode --position-mode hedge
|
|
135
|
+
agent-finance state submit INTENT_ID --profile default
|
|
136
|
+
agent-finance audit tail --limit 20
|
|
137
|
+
agent-finance audit export --json
|
|
138
|
+
agent-finance transfer history --profile live --direction spot-to-usds-futures --size 20 --json
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
아래 표의 field name과 `kind` 값은 machine contract이므로 영어로 유지합니다.
|
|
142
|
+
|
|
143
|
+
| Command | `kind` | Common payload path |
|
|
144
|
+
| --- | --- | --- |
|
|
145
|
+
| `account permissions` | `api-permissions` | `payload` |
|
|
146
|
+
| `account balances` | `spot-balances` | `payload.balances` |
|
|
147
|
+
| `account positions` | `usds-futures-positions` | `payload.assets`, `payload.positions` |
|
|
148
|
+
| `order query` | `order-query` | `payload` |
|
|
149
|
+
| `order open` | `open-orders` | `payload` |
|
|
150
|
+
| `transfer history` | `transfer-history` | `payload.rows` |
|
|
151
|
+
|
|
152
|
+
## Network and browser boundaries
|
|
153
|
+
|
|
154
|
+
현지화 안내: 이것은 AI Agent용 runtime instructions입니다. command, flag, provider name, JSON field, schema key, code block은 영어로 고정하고 외부 market evidence, news title, SEC text, provider 원문은 번역하지 않습니다.
|
|
155
|
+
|
|
156
|
+
이 절은 올바른 명령과 증거 경로를 고르는 데 사용합니다. 구조화 데이터는 `--json`을 우선하고, provider 강제는 교차 검증이나 provider 동작 감사 때만 사용합니다.
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: core
|
|
3
|
+
description: agent-finance 市场价格、session、crypto、历史、研究数据、provider 覆盖、预测市场、代理上下文和安全来源处理的入口指南。使用命令前先读这个。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# agent-finance core skill
|
|
7
|
+
|
|
8
|
+
本地化说明:这是给 AI Agent 的运行时指令。命令、flag、provider 名、JSON 字段、schema key 和代码块保持英文稳定;外部市场证据、新闻标题、SEC 文本、provider 原文不要翻译。
|
|
9
|
+
|
|
10
|
+
先读这个入口,再按任务加载更窄的 runtime skill。它把价格、session、历史、研究、crypto、Polymarket、profile 和浏览器边界串成一条可审计工作流。
|
|
11
|
+
|
|
12
|
+
## 开始
|
|
13
|
+
|
|
14
|
+
使用本节选择正确命令和证据路径。优先结构化 `--json` 输出;只有交叉验证或审计 provider 行为时才强制指定 provider。
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
agent-finance skills list
|
|
18
|
+
agent-finance market providers
|
|
19
|
+
agent-finance capabilities
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
agent-finance tui --symbols AAPL,CRDO,BTCUSDT
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## 任务路由
|
|
27
|
+
|
|
28
|
+
使用本节选择正确命令和证据路径。优先结构化 `--json` 输出;只有交叉验证或审计 provider 行为时才强制指定 provider。
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
agent-finance skills get price
|
|
32
|
+
agent-finance skills get history-indicators
|
|
33
|
+
agent-finance skills get research-data
|
|
34
|
+
agent-finance skills get crypto
|
|
35
|
+
agent-finance skills get prediction-markets
|
|
36
|
+
agent-finance skills get providers
|
|
37
|
+
agent-finance skills get profile
|
|
38
|
+
agent-finance skills get tui
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## 默认证据流
|
|
42
|
+
|
|
43
|
+
使用本节选择正确命令和证据路径。优先结构化 `--json` 输出;只有交叉验证或审计 provider 行为时才强制指定 provider。
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
agent-finance market price CRDO
|
|
47
|
+
agent-finance market price CRDO --json
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
agent-finance market sessions CRDO
|
|
52
|
+
agent-finance market sessions LITE --proxy-symbol LITEUSDT
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
agent-finance market history LITE --interval 1d --range 1mo --adjustment auto --limit 30
|
|
57
|
+
agent-finance market history LITE --interval 1m --range 5d --session extended --adjustment raw --no-actions --limit 120
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
```bash
|
|
61
|
+
agent-finance market fundamentals CRDO
|
|
62
|
+
agent-finance market fundamentals CRDO --provider sec-edgar
|
|
63
|
+
agent-finance market analysis CRDO
|
|
64
|
+
agent-finance market options CRDO
|
|
65
|
+
agent-finance market ownership CRDO
|
|
66
|
+
agent-finance market events CRDO --provider sec-edgar
|
|
67
|
+
agent-finance market news CRDO
|
|
68
|
+
agent-finance market read-url "https://www.sec.gov/Archives/edgar/data/0001807794/000162828026014017/crdo-20260131.htm"
|
|
69
|
+
agent-finance market search "optical interconnect"
|
|
70
|
+
agent-finance market screen day_gainers
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
agent-finance market polymarket search "spacex ipo" --limit 5
|
|
75
|
+
agent-finance market polymarket market MARKET_ID_OR_SLUG
|
|
76
|
+
agent-finance skills get prediction-markets
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
agent-finance market crypto snapshot BTC/USDT
|
|
81
|
+
agent-finance market crypto sentiment BTCUSDT
|
|
82
|
+
agent-finance market price BTC/USDT --asset crypto
|
|
83
|
+
agent-finance market history BTC/USDT --asset crypto --interval 1h --limit 48
|
|
84
|
+
agent-finance market crypto quote BTC/USDT
|
|
85
|
+
agent-finance market crypto book BTC/USDT --provider okx --limit 20
|
|
86
|
+
agent-finance market crypto discover --provider coingecko --kind trending
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
agent-finance skills get profile
|
|
91
|
+
agent-finance account permissions --profile default --json
|
|
92
|
+
agent-finance account balances --profile default --json
|
|
93
|
+
agent-finance account positions --profile default --json
|
|
94
|
+
agent-finance risk explain --profile default
|
|
95
|
+
agent-finance order submit INTENT_ID --profile default
|
|
96
|
+
agent-finance order query BTCUSDT --profile default --market spot --client-order-id CLIENT_ORDER_ID --json
|
|
97
|
+
agent-finance order open --profile default --market spot --symbol BTCUSDT --json
|
|
98
|
+
agent-finance transfer history --profile live --direction spot-to-usds-futures --size 20 --json
|
|
99
|
+
agent-finance state create --profile default --kind leverage --symbol BTCUSDT --leverage 2
|
|
100
|
+
agent-finance state create --profile default --kind position-mode --position-mode hedge
|
|
101
|
+
agent-finance state submit INTENT_ID --profile default
|
|
102
|
+
agent-finance audit export --json
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## 决策规则
|
|
106
|
+
|
|
107
|
+
使用本节选择正确命令和证据路径。优先结构化 `--json` 输出;只有交叉验证或审计 provider 行为时才强制指定 provider。
|