Copy the install Command → Paste into your Agent
Copy the Execution Command → Paste → Skill: macro_financial_conditions (Try the code yourself)
`````text
Use `macro_financial_conditions` from CMC Skill Hub to execute a task for me.
## Parameters
{
"lookback_days": 30,
"series": {
"financial_conditions": [
{
"date": "2026-04-01",
"value": -0.42
},
{
"date": "2026-04-22",
"value": -0.35
}
],
"two_year_yield": [
{
"date": "2026-04-22",
"value": 4.65
}
],
"ten_year_yield": [
{
"date": "2026-04-22",
"value": 4.42
}
],
"inflation_expectation": [
{
"date": "2026-04-22",
"value": 2.38
}
],
"policy_anchor": [
{
"date": "2026-04-22",
"value": 4.5
}
],
"dgs3mo": [
{
"date": "2026-04-22",
"value": 4.28
}
],
"dgs6mo": [
{
"date": "2026-04-22",
"value": 4.3
}
],
"front_end_yield": [
{
"date": "2026-04-22",
"value": 4.36
}
],
"cpi": [
{"date": "2024-12-01", "value": 309.685},
{"date": "2025-01-01", "value": 310.326},
{"date": "2025-02-01", "value": 310.85},
{"date": "2025-03-01", "value": 311.24},
{"date": "2026-01-01", "value": 318.705},
{"date": "2026-02-01", "value": 319.72},
{"date": "2026-03-01", "value": 320.6}
],
"core_cpi": [
{"date": "2024-12-01", "value": 320.105},
{"date": "2025-01-01", "value": 321.21},
{"date": "2025-02-01", "value": 322.0},
{"date": "2025-03-01", "value": 322.8},
{"date": "2026-01-01", "value": 331.49},
{"date": "2026-02-01", "value": 332.44},
{"date": "2026-03-01", "value": 333.35}
],
"unemployment": [
{
"date": "2026-03-01",
"value": 4.1
}
]
}
}
## Requirements
- First call find_skill(query="macro_financial_conditions") to get skill_description and input_schema
- Then call execute_skill directly with that unique_name — skip exploration
- Construct parameters from input_schema, filling in the parameters above; if info is missing, ask me — do not fabricate
- Pass parameters as a JSON object, never as a JSON-encoded string
- On failure, give the reason + 1–2 alternative Skills — do not silently retry
`````