[AVE Skills Integration] Add AVE Cloud Skills as Conversational Tools #56

Closed
opened 2026-04-13 11:44:36 +02:00 by shoko · 0 comments
Owner

Summary

Replace and expand current conversational agent tools with AVE Cloud Skills.

Changes

Action Tool Implementation
Replace search_tokens Use ave-data-rest: search
Add risk Use ave-data-rest: risk
Add token Use ave-data-rest: token
Add price Use ave-data-rest: price
Keep run_backtest Randebu-specific
Keep manage_simulation Randebu-specific

Implementation Steps

  1. Add ave-cloud-skill as git submodule at project root:

    git submodule add https://github.com/AveCloud/ave-cloud-skill.git ave-cloud-skill
    
  2. Create symlink so Python can import it:

    ln -s ../../ave-cloud-skill/scripts/ave src/backend/app/ave
    
  3. Update imports in conversational.py:

    from ave.data.search import cmd_search
    from ave.data.token import cmd_token, cmd_price
    from ave.data.market import cmd_risk
    
  4. Test that tools work correctly

Dependencies

  • Must be done before building slash command help system

Priority: HIGH - Sponsor requirement

## Summary Replace and expand current conversational agent tools with AVE Cloud Skills. ## Changes | Action | Tool | Implementation | |--------|------|----------------| | Replace | search_tokens | Use ave-data-rest: search | | Add | risk | Use ave-data-rest: risk | | Add | token | Use ave-data-rest: token | | Add | price | Use ave-data-rest: price | | Keep | run_backtest | Randebu-specific | | Keep | manage_simulation | Randebu-specific | ## Implementation Steps 1. Add ave-cloud-skill as git submodule at project root: ``` git submodule add https://github.com/AveCloud/ave-cloud-skill.git ave-cloud-skill ``` 2. Create symlink so Python can import it: ``` ln -s ../../ave-cloud-skill/scripts/ave src/backend/app/ave ``` 3. Update imports in conversational.py: ```python from ave.data.search import cmd_search from ave.data.token import cmd_token, cmd_price from ave.data.market import cmd_risk ``` 4. Test that tools work correctly ## Dependencies - Must be done before building slash command help system ## Priority: HIGH - Sponsor requirement
shoko closed this issue 2026-04-14 04:23:37 +02:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: shoko/randebu#56