<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ana-Maria Touza Medina</title>
    <description>The latest articles on DEV Community by Ana-Maria Touza Medina (@anamaria_touzamedina_01).</description>
    <link>https://dev.to/anamaria_touzamedina_01</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4041811%2Fcac2b4d2-69a7-4b10-9ee0-2a8e8c7a034c.jpg</url>
      <title>DEV Community: Ana-Maria Touza Medina</title>
      <link>https://dev.to/anamaria_touzamedina_01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anamaria_touzamedina_01"/>
    <language>en</language>
    <item>
      <title>We built an open-source skill that lets AI agents research markets and execute trades</title>
      <dc:creator>Ana-Maria Touza Medina</dc:creator>
      <pubDate>Wed, 22 Jul 2026 11:11:35 +0000</pubDate>
      <link>https://dev.to/anamaria_touzamedina_01/we-built-an-open-source-skill-that-lets-ai-agents-research-markets-and-execute-trades-obk</link>
      <guid>https://dev.to/anamaria_touzamedina_01/we-built-an-open-source-skill-that-lets-ai-agents-research-markets-and-execute-trades-obk</guid>
      <description>&lt;p&gt;Most AI agents can explain markets.&lt;/p&gt;

&lt;p&gt;Far fewer can actually do anything with that information.&lt;/p&gt;

&lt;p&gt;That is the gap we have been working on with Neverbell, an open-source skill that gives AI agents access to live market research and trading execution.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The goal is not to build another trading dashboard or ask users to hand over control to a black box. It is to give developers a practical way to connect an agent to financial markets while keeping the user in control of how and when execution happens.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What Neverbell does&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;With the skill installed, an AI agent can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Research markets and trading opportunities&lt;/li&gt;
&lt;li&gt;Review live market information&lt;/li&gt;
&lt;li&gt;Help the user reason through a potential trade&lt;/li&gt;
&lt;li&gt;Execute trades through Hyperliquid&lt;/li&gt;
&lt;li&gt;Operate within limits defined by the user&lt;/li&gt;
&lt;li&gt;Start with paper trading before real funds are deposited&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The important part is that the agent does not need to choose between two bad extremes:&lt;/p&gt;

&lt;p&gt;Executing everything without enough oversight&lt;br&gt;
Asking for confirmation at every tiny step&lt;/p&gt;

&lt;p&gt;Instead, the user can establish boundaries around what the agent is allowed to do.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why we built it as a skill&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;We did not want Neverbell to become another closed platform developers had to build around.&lt;/p&gt;

&lt;p&gt;The skill is designed to fit into existing agent workflows. Developers can inspect the code, understand how it works, contribute improvements and decide how it should be used within their own systems.&lt;/p&gt;

&lt;p&gt;That open-source approach matters even more when an agent can interact with real financial infrastructure.&lt;/p&gt;

&lt;p&gt;The code should be visible. The execution path should be understandable. The limits should belong to the user.&lt;/p&gt;

&lt;p&gt;Research and execution belong in the same workflow&lt;/p&gt;

&lt;p&gt;A common agent workflow looks something like this:&lt;/p&gt;

&lt;p&gt;Research a market, identify an opportunity and explain what I should consider.&lt;/p&gt;

&lt;p&gt;That is useful, but it still leaves a gap between analysis and action.&lt;/p&gt;

&lt;p&gt;With Neverbell, the workflow can continue:&lt;/p&gt;

&lt;p&gt;Research the market, explain the reasoning, check the trade against my limits and execute it if the conditions are met.&lt;/p&gt;

&lt;p&gt;The user still defines the rules. The agent simply has the tools required to complete the workflow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Guardrails matter&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Giving an AI agent access to financial execution requires more than connecting an API.&lt;/p&gt;

&lt;p&gt;The system needs clear boundaries around:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The amount that can be traded&lt;/li&gt;
&lt;li&gt;The markets the agent can access&lt;/li&gt;
&lt;li&gt;When user confirmation is required&lt;/li&gt;
&lt;li&gt;What happens when execution fails&lt;/li&gt;
&lt;li&gt;How the user can review activity&lt;/li&gt;
&lt;li&gt;Whether the agent is using paper funds or real funds&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We are still early, and we expect these controls to improve through real developer feedback.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Try it or inspect the code&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Neverbell is now live and the skill is available on GitHub:&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/Neverbell/skill" rel="noopener noreferrer"&gt;https://github.com/Neverbell/skill&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://www.neverbell.com" rel="noopener noreferrer"&gt;https://www.neverbell.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We would especially like feedback from developers working on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI agents&lt;/li&gt;
&lt;li&gt;Autonomous workflows&lt;/li&gt;
&lt;li&gt;Trading tools&lt;/li&gt;
&lt;li&gt;Financial infrastructure&lt;/li&gt;
&lt;li&gt;Agent permissions and guardrails&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;What would you need to see before allowing an AI agent to execute a financial action on your behalf?&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>ai</category>
      <category>fintech</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
