$npx -y skills add Abel-ai-lab/predict-anything --skill abelUse when the user asks for Abel or starts an Abel workflow and you need to check auth state, initialize Abel if needed, and route to the right Abel skill before proceeding.
| 1 | Use `Abel` as the main entrypoint. |
| 2 | |
| 3 | Before routing, verify auth state by running: |
| 4 | |
| 5 | ```bash |
| 6 | python3 <abel-skill-root>/../abel-common/python/abel_common/cap/graph_probe.py auth-status |
| 7 | ``` |
| 8 | |
| 9 | Resolve `<abel-skill-root>` to this installed skill directory before running |
| 10 | the command. Do not use a current-working-directory relative `../abel-common` |
| 11 | path. |
| 12 | |
| 13 | Do not guess from shell environment alone. |
| 14 | |
| 15 | 1. If auth is missing or invalid, use `abel-auth`. Tell it to read |
| 16 | `references/setup-guide.md`, complete auth repair, then continue routing the |
| 17 | user's original request. |
| 18 | 2. If the user asks how to trade, buy or sell, find alpha, find or validate a |
| 19 | strategy, backtest, optimize Sharpe/return/drawdown, test whether a ticker has |
| 20 | tradable opportunity, asks about stock options, or continue/debug an Abel |
| 21 | Invest workspace, use `abel-invest`. |
| 22 | |
| 23 | For new investment or trading strategy searches, confirm first: |
| 24 | "I can run a deep Abel Invest research pass to look for a tradable strategy |
| 25 | that answers your investment question. This may take a while and can use a |
| 26 | lot of tokens. Should I proceed?" |
| 27 | Do not give a preliminary buy/sell stance or strategy analysis before this |
| 28 | confirmation. |
| 29 | For stock-options questions, say that Abel Invest does not yet have a |
| 30 | dedicated options-strategy workflow, but can look for an underlying-stock |
| 31 | trading strategy if the user wants to spend the time and tokens. |
| 32 | 3. For causal mechanism reads, target/candidate discovery, company or market |
| 33 | analysis, graph-native causal reads, life-investment decisions, general |
| 34 | decision analysis, or questions that do not ask for buy/sell guidance, alpha, |
| 35 | backtesting, or a trading strategy, use `abel-ask`. |
| 36 | |
| 37 | `abel-ask` may naturally hand off to `abel-invest` only after the user moves |
| 38 | from understanding or shortlist discovery into tradable validation. Carry the |
| 39 | Ask shortlist or mechanism as priors; do not let Ask emulate strategy |
| 40 | discovery. |
| 41 | |
| 42 | ## Recommended Questions |
| 43 | |
| 44 | When the user asks what they can do with Abel, what Abel is useful for, or |
| 45 | otherwise needs help choosing a first Abel prompt, answer with these recommended |
| 46 | questions: |
| 47 | |
| 48 | Strategy Search: |
| 49 | |
| 50 | - Abel, find a strategy for AMZN |
| 51 | - Can Abel look for an ORCL strategy? |
| 52 | - Abel, help me search for a tradable TSLA strategy. |
| 53 | - Is there an ETH strategy Abel can find? |
| 54 | - Abel, explore a META strategy for me. |
| 55 | |
| 56 | Abel Ask: |
| 57 | |
| 58 | - Which companies benefit from AI datacenter expansion? |
| 59 | - Analyze what is happening with TSLA. |
| 60 | - Is spending $1M on an MBA worth it? |
| 61 | - Should I learn to cook or keep eating out? |
| 62 | - Should I still invest in an MBA degree? |
| 63 | |
| 64 | These are examples only. If the user chooses one, route it normally through the |
| 65 | auth check and then to the appropriate Abel skill. |