agent-finance-cli 0.1.2 → 0.1.3

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/src/skills.rs CHANGED
@@ -18,7 +18,11 @@ const SKILLS: &[BuiltinSkill] = &[
18
18
  },
19
19
  BuiltinSkill {
20
20
  name: "providers",
21
- description: "Understand Yahoo, SEC EDGAR, CNBC, Robinhood, Stooq, Binance futures, and proxy quote capabilities.",
21
+ description: "Understand Yahoo, SEC EDGAR, CNBC, Robinhood, Stooq, Binance futures, Polymarket, and proxy quote capabilities.",
22
+ },
23
+ BuiltinSkill {
24
+ name: "prediction-markets",
25
+ description: "Use Polymarket as quantifiable sentiment and event-probability evidence via official read-only APIs.",
22
26
  },
23
27
  BuiltinSkill {
24
28
  name: "history-indicators",
@@ -43,6 +47,7 @@ pub fn get(name: &str, full: bool) -> Option<&'static str> {
43
47
  ("price", _) => Some(PRICE),
44
48
  ("research-data", _) => Some(RESEARCH_DATA),
45
49
  ("providers", _) => Some(PROVIDERS),
50
+ ("prediction-markets", _) => Some(PREDICTION_MARKETS),
46
51
  ("history-indicators", _) => Some(HISTORY_INDICATORS),
47
52
  ("futures", _) => Some(FUTURES),
48
53
  _ => None,
@@ -54,5 +59,6 @@ const CORE_FULL: &str = include_str!("../skills/core-full.md");
54
59
  const PRICE: &str = include_str!("../skills/price.md");
55
60
  const RESEARCH_DATA: &str = include_str!("../skills/research-data.md");
56
61
  const PROVIDERS: &str = include_str!("../skills/providers.md");
62
+ const PREDICTION_MARKETS: &str = include_str!("../skills/prediction-markets.md");
57
63
  const HISTORY_INDICATORS: &str = include_str!("../skills/history-indicators.md");
58
64
  const FUTURES: &str = include_str!("../skills/futures.md");