<?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: Ahmed Younis</title>
    <description>The latest articles on DEV Community by Ahmed Younis (@ahmed-younis-aetherx).</description>
    <link>https://dev.to/ahmed-younis-aetherx</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%2F3961742%2Fb71c0e98-aff7-4377-972d-33f17759e57c.png</url>
      <title>DEV Community: Ahmed Younis</title>
      <link>https://dev.to/ahmed-younis-aetherx</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ahmed-younis-aetherx"/>
    <language>en</language>
    <item>
      <title>Governed Intelligence: Separating Capability, Authority, and Verification in AI Systems</title>
      <dc:creator>Ahmed Younis</dc:creator>
      <pubDate>Wed, 19 Aug 2026 11:38:15 +0000</pubDate>
      <link>https://dev.to/aetherxglobal/governed-intelligence-separating-capability-authority-and-verification-in-ai-systems-351p</link>
      <guid>https://dev.to/aetherxglobal/governed-intelligence-separating-capability-authority-and-verification-in-ai-systems-351p</guid>
      <description>&lt;p&gt;AI systems are becoming increasingly capable of reasoning, planning, using tools, and taking actions.&lt;/p&gt;

&lt;p&gt;But capability alone is not enough.&lt;/p&gt;

&lt;p&gt;For systems that may operate inside financial, enterprise, research, or other consequential workflows, a more important question appears:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What is the system actually authorized to do, based on what evidence, and how do we verify the result afterward?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;At &lt;strong&gt;AETHER X GLOBAL&lt;/strong&gt;, we have been exploring this problem through a public engineering program around what we call &lt;strong&gt;Governed Intelligence&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The core idea is simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;CAPABILITY != AUTHORITY

OUTPUT != FACT

TOOL AVAILABILITY != TOOL PERMISSION

EXECUTION COMPLETE != VERIFIED
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;These are not philosophical distinctions.&lt;/p&gt;

&lt;p&gt;They are architectural constraints.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem With Capability-Centric AI Systems
&lt;/h2&gt;

&lt;p&gt;A conventional AI system is often evaluated around questions such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Can the model produce the right answer?&lt;/li&gt;
&lt;li&gt;Can the agent complete the task?&lt;/li&gt;
&lt;li&gt;Can it call the required tool?&lt;/li&gt;
&lt;li&gt;Can it automate the workflow?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Those questions matter.&lt;/p&gt;

&lt;p&gt;But in consequential systems, they are incomplete.&lt;/p&gt;

&lt;p&gt;Imagine an agent that is technically capable of executing a financial transaction, modifying an enterprise record, calling an external API, or approving a workflow.&lt;/p&gt;

&lt;p&gt;Its ability to perform that action does not answer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who authorized it?&lt;/li&gt;
&lt;li&gt;Under what scope?&lt;/li&gt;
&lt;li&gt;Using which evidence?&lt;/li&gt;
&lt;li&gt;Was the authority still valid at the time of execution?&lt;/li&gt;
&lt;li&gt;Was the action reversible?&lt;/li&gt;
&lt;li&gt;Was the result independently verified?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That gap between &lt;strong&gt;what a system can do&lt;/strong&gt; and &lt;strong&gt;what it is permitted to do&lt;/strong&gt; becomes increasingly important as agents become more autonomous.&lt;/p&gt;




&lt;h2&gt;
  
  
  A Different Engineering Chain
&lt;/h2&gt;

&lt;p&gt;Our working model treats intelligence as a governed system rather than a model response.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;INTENT
  ↓
DATA / KNOWLEDGE
  ↓
EVIDENCE
  ↓
ANALYSIS / REASONING
  ↓
DECISION
  ↓
AUTHORITY
  ↓
CONTROLLED EXECUTION
  ↓
VERIFICATION
  ↓
VERIFIED OUTCOME
  ↓
AUDIT / LEARNING
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Not every system needs every stage.&lt;/p&gt;

&lt;p&gt;The important principle is that the stages should not be silently collapsed when risk requires separation.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;p&gt;A recommendation is not automatically a decision.&lt;/p&gt;

&lt;p&gt;A decision does not automatically grant execution authority.&lt;/p&gt;

&lt;p&gt;Execution does not automatically prove success.&lt;/p&gt;

&lt;p&gt;And a model should not become the sole authority over the controls that constrain the model itself.&lt;/p&gt;




&lt;h2&gt;
  
  
  Evidence Before Confidence
&lt;/h2&gt;

&lt;p&gt;One of the first problems we explored is evidence.&lt;/p&gt;

&lt;p&gt;A model can generate a highly confident output from incomplete, stale, or poorly sourced information.&lt;/p&gt;

&lt;p&gt;That creates a distinction between:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;OUTPUT
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;EVIDENCE-BACKED CLAIM
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For important system outputs, the architecture should make it possible, when needed, to inspect elements such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;source;&lt;/li&gt;
&lt;li&gt;provenance;&lt;/li&gt;
&lt;li&gt;time;&lt;/li&gt;
&lt;li&gt;method;&lt;/li&gt;
&lt;li&gt;version;&lt;/li&gt;
&lt;li&gt;verification state.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This becomes especially important in environments where knowledge changes over time.&lt;/p&gt;

&lt;p&gt;A conclusion that was correct based on information available at one point may become invalid when the underlying evidence changes.&lt;/p&gt;

&lt;p&gt;This is why &lt;strong&gt;point-in-time knowledge and provenance&lt;/strong&gt; are treated as first-class engineering concepts rather than optional metadata.&lt;/p&gt;




&lt;h2&gt;
  
  
  Authority Before Action
&lt;/h2&gt;

&lt;p&gt;The second major separation is authority.&lt;/p&gt;

&lt;p&gt;In many agent systems, tool availability can effectively become permission.&lt;/p&gt;

&lt;p&gt;If the tool exists and the agent can call it, the system may treat the action as available.&lt;/p&gt;

&lt;p&gt;For consequential workflows, that is too weak.&lt;/p&gt;

&lt;p&gt;Instead, the system should be able to represent explicit authority boundaries.&lt;/p&gt;

&lt;p&gt;Conceptually:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;AGENT
  ↓
IDENTITY
  ↓
DELEGATION
  ↓
AUTHORITY
  ↓
SCOPE
  ↓
TOOL ACCESS
  ↓
EXECUTION
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The system should be able to answer questions such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who is acting?&lt;/li&gt;
&lt;li&gt;What is the permitted action?&lt;/li&gt;
&lt;li&gt;Under which authority?&lt;/li&gt;
&lt;li&gt;Within what scope?&lt;/li&gt;
&lt;li&gt;For how long?&lt;/li&gt;
&lt;li&gt;Under which conditions?&lt;/li&gt;
&lt;li&gt;What requires approval?&lt;/li&gt;
&lt;li&gt;What can be revoked?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This creates an important distinction:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Tool access is a technical capability. Authority is a governance property.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The two should not be treated as the same thing.&lt;/p&gt;




&lt;h2&gt;
  
  
  Verification After Execution
&lt;/h2&gt;

&lt;p&gt;The third major problem is verification.&lt;/p&gt;

&lt;p&gt;Many automated workflows stop at:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;EXECUTION COMPLETED
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;But completion is not the same as correctness.&lt;/p&gt;

&lt;p&gt;An API call may succeed while producing the wrong business outcome.&lt;/p&gt;

&lt;p&gt;A tool invocation may technically complete while violating an authority boundary.&lt;/p&gt;

&lt;p&gt;A generated artifact may pass syntax validation while failing the actual requirement.&lt;/p&gt;

&lt;p&gt;So we treat verification as a separate stage.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;EXECUTION
   ↓
EVIDENCE
   ↓
VERIFICATION
   ↓
ACCEPTANCE
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Where appropriate, verification should be logically independent from generation or execution.&lt;/p&gt;

&lt;p&gt;This helps reduce situations where a system effectively evaluates its own work using the same assumptions that produced the result.&lt;/p&gt;




&lt;h2&gt;
  
  
  Fail-Closed Behavior
&lt;/h2&gt;

&lt;p&gt;Another important design principle is explicit failure.&lt;/p&gt;

&lt;p&gt;When a contract, authority scope, version, or evidence requirement is unsupported, the safer behavior is often to fail explicitly rather than silently infer permission.&lt;/p&gt;

&lt;p&gt;In other words:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;UNKNOWN != AUTHORIZED

UNSUPPORTED != ACCEPTED
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is especially important in agent systems where silent assumptions can produce external side effects.&lt;/p&gt;

&lt;p&gt;Fail-closed behavior can introduce additional friction.&lt;/p&gt;

&lt;p&gt;But in higher-impact workflows, that friction may be preferable to ambiguous authority.&lt;/p&gt;




&lt;h2&gt;
  
  
  Making Governance Testable
&lt;/h2&gt;

&lt;p&gt;A governance model becomes more useful when parts of it can be expressed as executable contracts rather than documentation alone.&lt;/p&gt;

&lt;p&gt;That is why the current public engineering surface includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;machine-readable JSON Schemas;&lt;/li&gt;
&lt;li&gt;Python reference validators;&lt;/li&gt;
&lt;li&gt;Evidence / Authority / Verification contracts;&lt;/li&gt;
&lt;li&gt;Point-in-Time Knowledge &amp;amp; Provenance contracts;&lt;/li&gt;
&lt;li&gt;Governed Agent Authority &amp;amp; Tool Use boundaries;&lt;/li&gt;
&lt;li&gt;synthetic conformance cases;&lt;/li&gt;
&lt;li&gt;deterministic engineering checks;&lt;/li&gt;
&lt;li&gt;a bounded installable Python package candidate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The objective is &lt;strong&gt;not&lt;/strong&gt; to claim production readiness.&lt;/p&gt;

&lt;p&gt;The objective is to make the architectural assumptions inspectable and testable.&lt;/p&gt;

&lt;p&gt;A specification should be traceable through a chain such as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SPECIFICATION
→ MACHINE-READABLE CONTRACT
→ REFERENCE BEHAVIOR
→ CONFORMANCE CASE
→ EVIDENCE
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That creates a stronger basis for technical criticism than a diagram or policy document alone.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Matters for AI Agents
&lt;/h2&gt;

&lt;p&gt;The industry is moving from systems that primarily generate information toward systems that can perform work.&lt;/p&gt;

&lt;p&gt;As that transition happens, the critical question changes.&lt;/p&gt;

&lt;p&gt;It is no longer only:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Can the model reason well enough?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It becomes:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Can the whole system be trusted to act within defined boundaries?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That requires engineering beyond model capability.&lt;/p&gt;

&lt;p&gt;It requires some combination of:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;EVIDENCE
+
AUTHORITY
+
CONTROLLED EXECUTION
+
VERIFICATION
+
AUDITABILITY
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The more consequential the action, the more important those controls become.&lt;/p&gt;




&lt;h2&gt;
  
  
  Public Engineering, Not a Product Release
&lt;/h2&gt;

&lt;p&gt;We have published a bounded engineering repository so these ideas can be inspected and challenged externally.&lt;/p&gt;

&lt;p&gt;The current public surface includes reference architecture, technical specifications, machine-readable contracts, reference validators, conformance paths, engineering evidence, and an installable Python package candidate.&lt;/p&gt;

&lt;p&gt;But the distinction is important:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PUBLIC ENGINEERING != PRODUCT RELEASE

REFERENCE CODE != PRODUCTION CODE

INSTALLABLE CANDIDATE != SUPPORTED SDK

CI PASS != EXTERNAL CERTIFICATION
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The current work remains deliberately &lt;strong&gt;non-production&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;We would rather expose the boundaries clearly than imply maturity that has not been established.&lt;/p&gt;




&lt;h2&gt;
  
  
  We Want the Architecture Challenged
&lt;/h2&gt;

&lt;p&gt;The most useful feedback at this stage is not whether the idea sounds good.&lt;/p&gt;

&lt;p&gt;We are more interested in questions such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Where is the authority model underspecified?&lt;/li&gt;
&lt;li&gt;Which failure cases are missing?&lt;/li&gt;
&lt;li&gt;What becomes unnecessarily complex?&lt;/li&gt;
&lt;li&gt;Which abstractions would fail in real agent systems?&lt;/li&gt;
&lt;li&gt;Where should deterministic controls replace model reasoning?&lt;/li&gt;
&lt;li&gt;What should be verified independently?&lt;/li&gt;
&lt;li&gt;Which parts of this architecture should not exist at all?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The public repository is available here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/AETHERXGLOBAL/aether-x-governed-intelligence" rel="noopener noreferrer"&gt;https://github.com/AETHERXGLOBAL/aether-x-governed-intelligence&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you work on AI agents, Python systems, security, authorization, provenance, or software architecture, technical criticism is welcome.&lt;/p&gt;

&lt;p&gt;Because for consequential AI systems, the question should not only be:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What can the system do?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It should also be:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;What is it allowed to do — and can we prove that the outcome should be trusted?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>architecture</category>
      <category>systemdesign</category>
    </item>
    <item>
      <title>Why We Are Not Building Another Foundation Model</title>
      <dc:creator>Ahmed Younis</dc:creator>
      <pubDate>Mon, 03 Aug 2026 19:08:32 +0000</pubDate>
      <link>https://dev.to/ahmed-younis-aetherx/why-we-are-not-building-another-foundation-model-ljg</link>
      <guid>https://dev.to/ahmed-younis-aetherx/why-we-are-not-building-another-foundation-model-ljg</guid>
      <description>&lt;p&gt;The AI market is full of teams asking the same question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;How can we build a more powerful model?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;At AETHER X GLOBAL, we are starting from a different question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;How can we build an intelligence system that remains controlled, auditable, secure, and useful when the underlying models continue to change?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This distinction matters.&lt;/p&gt;

&lt;p&gt;For many enterprise, financial, and knowledge-intensive workflows, the foundation model is only one component of the system. A capable model does not automatically provide trusted data access, authorization, evidence, operational controls, or accountability.&lt;/p&gt;

&lt;p&gt;The difficult engineering work begins around the model.&lt;/p&gt;

&lt;p&gt;This article describes an architecture direction we are currently evaluating. It is not a claim that a finished production platform has already been deployed.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Model Is Not the Complete System
&lt;/h2&gt;

&lt;p&gt;A language model can generate text, classify information, extract entities, create summaries, and reason over supplied context.&lt;/p&gt;

&lt;p&gt;But a production-grade intelligence system must also answer questions such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Who is making the request?&lt;/li&gt;
&lt;li&gt;What data is that user permitted to access?&lt;/li&gt;
&lt;li&gt;Which model is appropriate for this task?&lt;/li&gt;
&lt;li&gt;What tools may the system call?&lt;/li&gt;
&lt;li&gt;What actions require human approval?&lt;/li&gt;
&lt;li&gt;Which evidence supports the output?&lt;/li&gt;
&lt;li&gt;Can the decision be reconstructed later?&lt;/li&gt;
&lt;li&gt;What happens when a provider is unavailable?&lt;/li&gt;
&lt;li&gt;How is sensitive data prevented from leaving an approved boundary?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are architecture and governance questions, not model-training questions.&lt;/p&gt;

&lt;p&gt;That is why our direction is not to build another general-purpose foundation model.&lt;/p&gt;

&lt;p&gt;The objective is to engineer a governed intelligence layer capable of coordinating multiple models, data sources, policies, tools, and specialist agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Proposed System Boundary
&lt;/h2&gt;

&lt;p&gt;A simplified architecture looks like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User or Application
        |
        v
Identity and Tenant Context
        |
        v
Request Gateway
        |
        v
Policy and Authorization Engine
        |
        v
Task Classification and Risk Scoring
        |
        v
Model and Tool Router
     /     |      \
    v      v       v
 Model A  Model B  Specialist Tool
     \     |       /
      v    v      v
 Retrieval and Evidence Layer
        |
        v
Verification and Guardrails
        |
        v
Human Approval When Required
        |
        v
Output or Controlled Action
        |
        v
Immutable Audit Record
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The central design principle is simple:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Models should operate inside an enforceable system boundary.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;They should not independently determine their own permissions, retrieve unrestricted data, or execute sensitive actions without external controls.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Identity Before Intelligence
&lt;/h2&gt;

&lt;p&gt;Every request should begin with identity and context.&lt;/p&gt;

&lt;p&gt;The system needs to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The authenticated user or service&lt;/li&gt;
&lt;li&gt;The organization and tenant&lt;/li&gt;
&lt;li&gt;The permitted data domains&lt;/li&gt;
&lt;li&gt;The current role&lt;/li&gt;
&lt;li&gt;The jurisdiction or policy boundary&lt;/li&gt;
&lt;li&gt;The purpose of the request&lt;/li&gt;
&lt;li&gt;The permitted action level&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This context should not exist only inside the prompt.&lt;/p&gt;

&lt;p&gt;It should be represented as structured, enforceable system data.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="kd"&gt;type&lt;/span&gt; &lt;span class="nx"&gt;ExecutionContext&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;requestId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;tenantId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;actorId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;roles&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt;
  &lt;span class="nl"&gt;permittedDataDomains&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt;
  &lt;span class="nl"&gt;permittedTools&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt;
  &lt;span class="nl"&gt;maximumActionLevel&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;read&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;recommend&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;execute&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;requiresHumanApproval&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;boolean&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A prompt is not an authorization mechanism.&lt;/p&gt;

&lt;p&gt;Permissions must be checked outside the model.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Policy Before Model Selection
&lt;/h2&gt;

&lt;p&gt;A multi-model system should not route tasks based only on benchmark performance.&lt;/p&gt;

&lt;p&gt;The routing decision may also depend on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data sensitivity&lt;/li&gt;
&lt;li&gt;Cost constraints&lt;/li&gt;
&lt;li&gt;Required latency&lt;/li&gt;
&lt;li&gt;Context-window requirements&lt;/li&gt;
&lt;li&gt;Tool-use capability&lt;/li&gt;
&lt;li&gt;Jurisdiction&lt;/li&gt;
&lt;li&gt;Reliability history&lt;/li&gt;
&lt;li&gt;Explainability requirements&lt;/li&gt;
&lt;li&gt;Provider availability&lt;/li&gt;
&lt;li&gt;Approved deployment boundaries&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A simplified routing contract might look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="kd"&gt;type&lt;/span&gt; &lt;span class="nx"&gt;ModelRoute&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;provider&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;model&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;purpose&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;classification&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;analysis&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;generation&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;verification&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;dataClassification&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;public&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;internal&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;confidential&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;maximumCost&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;number&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;timeoutMs&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;number&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;fallbackRoutes&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This creates model optionality.&lt;/p&gt;

&lt;p&gt;The business workflow depends on an internal execution contract rather than being directly coupled to one provider’s API.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Evidence Must Travel With the Output
&lt;/h2&gt;

&lt;p&gt;In financial and institutional workflows, a fluent answer is not enough.&lt;/p&gt;

&lt;p&gt;The system should retain the relationship between:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The request&lt;/li&gt;
&lt;li&gt;The source data&lt;/li&gt;
&lt;li&gt;The retrieval timestamp&lt;/li&gt;
&lt;li&gt;The transformation steps&lt;/li&gt;
&lt;li&gt;The model and configuration&lt;/li&gt;
&lt;li&gt;The validation result&lt;/li&gt;
&lt;li&gt;The final output&lt;/li&gt;
&lt;li&gt;The approving human, when applicable&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A response should therefore be treated as an evidence-bearing object.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight typescript"&gt;&lt;code&gt;&lt;span class="kd"&gt;type&lt;/span&gt; &lt;span class="nx"&gt;IntelligenceResult&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;T&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="na"&gt;result&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;T&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;confidence&lt;/span&gt;&lt;span class="p"&gt;?:&lt;/span&gt; &lt;span class="kr"&gt;number&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;sourceReferences&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;[];&lt;/span&gt;
  &lt;span class="nl"&gt;retrievedAt&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;modelRoute&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;policyDecisionId&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;verificationStatus&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;passed&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;flagged&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="o"&gt;|&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;failed&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
  &lt;span class="nl"&gt;humanApprovalId&lt;/span&gt;&lt;span class="p"&gt;?:&lt;/span&gt; &lt;span class="kr"&gt;string&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;};&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This does not make model outputs automatically correct.&lt;/p&gt;

&lt;p&gt;It makes them inspectable.&lt;/p&gt;

&lt;p&gt;That distinction is essential.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Tools Need Stronger Controls Than Text Generation
&lt;/h2&gt;

&lt;p&gt;An incorrect paragraph is a quality problem.&lt;/p&gt;

&lt;p&gt;An incorrect tool call can become a financial, operational, or security incident.&lt;/p&gt;

&lt;p&gt;The architecture should separate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Generating a proposed action&lt;/li&gt;
&lt;li&gt;Validating the action&lt;/li&gt;
&lt;li&gt;Authorizing the action&lt;/li&gt;
&lt;li&gt;Executing the action&lt;/li&gt;
&lt;li&gt;Recording the outcome&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For example, an agent may propose creating a market alert, updating an internal record, or initiating a workflow.&lt;/p&gt;

&lt;p&gt;It should not automatically receive unlimited authority to perform those actions.&lt;/p&gt;

&lt;p&gt;High-impact operations should use:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Explicit tool allowlists&lt;/li&gt;
&lt;li&gt;Parameter validation&lt;/li&gt;
&lt;li&gt;Scoped credentials&lt;/li&gt;
&lt;li&gt;Idempotency controls&lt;/li&gt;
&lt;li&gt;Transaction limits&lt;/li&gt;
&lt;li&gt;Human approval gates&lt;/li&gt;
&lt;li&gt;Complete execution logs&lt;/li&gt;
&lt;li&gt;Reversible operations where possible&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The agent proposes.&lt;/p&gt;

&lt;p&gt;The control plane decides.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Verification Should Be Independent
&lt;/h2&gt;

&lt;p&gt;The same model that produced an answer should not be the only component responsible for approving it.&lt;/p&gt;

&lt;p&gt;Verification can include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Deterministic validation&lt;/li&gt;
&lt;li&gt;Schema checking&lt;/li&gt;
&lt;li&gt;Numerical reconciliation&lt;/li&gt;
&lt;li&gt;Source consistency checks&lt;/li&gt;
&lt;li&gt;Policy validation&lt;/li&gt;
&lt;li&gt;A second model with a different role&lt;/li&gt;
&lt;li&gt;Human review&lt;/li&gt;
&lt;li&gt;Domain-specific business rules&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For a financial workflow, verification may include checking:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Whether market data is current&lt;/li&gt;
&lt;li&gt;Whether currencies and units are consistent&lt;/li&gt;
&lt;li&gt;Whether calculations can be reproduced&lt;/li&gt;
&lt;li&gt;Whether the requested output crosses into regulated advice&lt;/li&gt;
&lt;li&gt;Whether confidential information appears in the response&lt;/li&gt;
&lt;li&gt;Whether the result is presented as fact, inference, or scenario&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Verification should be designed according to the consequences of failure.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Auditability Is a Runtime Capability
&lt;/h2&gt;

&lt;p&gt;Auditability should not be added later as a reporting feature.&lt;/p&gt;

&lt;p&gt;It should be part of the execution architecture.&lt;/p&gt;

&lt;p&gt;A useful audit record should make it possible to answer:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What happened?&lt;/li&gt;
&lt;li&gt;Who initiated it?&lt;/li&gt;
&lt;li&gt;Which policies applied?&lt;/li&gt;
&lt;li&gt;Which data was accessed?&lt;/li&gt;
&lt;li&gt;Which model was used?&lt;/li&gt;
&lt;li&gt;Which tools were called?&lt;/li&gt;
&lt;li&gt;What validations ran?&lt;/li&gt;
&lt;li&gt;Who approved the action?&lt;/li&gt;
&lt;li&gt;What changed as a result?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is particularly important when AI systems move from producing content to participating in business processes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Main Trade-Offs
&lt;/h2&gt;

&lt;p&gt;A governed multi-model architecture is not free.&lt;/p&gt;

&lt;p&gt;It introduces real costs.&lt;/p&gt;

&lt;h3&gt;
  
  
  More latency
&lt;/h3&gt;

&lt;p&gt;Policy checks, retrieval, verification, and approval steps increase response time.&lt;/p&gt;

&lt;h3&gt;
  
  
  More engineering complexity
&lt;/h3&gt;

&lt;p&gt;A model API integration is relatively simple.&lt;/p&gt;

&lt;p&gt;A reliable control plane requires identity, authorization, observability, evaluation, security, and operational ownership.&lt;/p&gt;

&lt;h3&gt;
  
  
  Higher infrastructure cost
&lt;/h3&gt;

&lt;p&gt;Multiple models, validation calls, logging, and evidence storage can increase cost per execution.&lt;/p&gt;

&lt;h3&gt;
  
  
  Slower initial delivery
&lt;/h3&gt;

&lt;p&gt;A controlled system may take longer to build than an unrestricted prototype.&lt;/p&gt;

&lt;p&gt;These costs are justified only when the workflow has meaningful financial, operational, legal, or reputational consequences.&lt;/p&gt;

&lt;p&gt;Not every AI feature needs this architecture.&lt;/p&gt;

&lt;p&gt;A low-risk writing assistant and a financial decision-support agent should not be governed identically.&lt;/p&gt;

&lt;h2&gt;
  
  
  Initial Engineering Acceptance Criteria
&lt;/h2&gt;

&lt;p&gt;Before calling a system like this production-ready, I would expect at least the following:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Every request has an authenticated actor and tenant context.&lt;/li&gt;
&lt;li&gt;Every data access is checked against an external policy.&lt;/li&gt;
&lt;li&gt;Sensitive data cannot be routed to an unapproved provider.&lt;/li&gt;
&lt;li&gt;Business workflows are not tightly coupled to one model vendor.&lt;/li&gt;
&lt;li&gt;Every tool call is validated, authorized, and logged.&lt;/li&gt;
&lt;li&gt;High-impact actions require explicit approval.&lt;/li&gt;
&lt;li&gt;Outputs preserve source and execution provenance.&lt;/li&gt;
&lt;li&gt;Failed models can degrade safely to approved fallbacks.&lt;/li&gt;
&lt;li&gt;Evaluation includes adversarial and failure scenarios.&lt;/li&gt;
&lt;li&gt;Audit records can reconstruct the execution path.&lt;/li&gt;
&lt;li&gt;Model outputs are clearly separated from verified facts.&lt;/li&gt;
&lt;li&gt;Security controls are tested independently of model quality.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If these conditions cannot be tested, the architecture is still a concept—not an operationally controlled system.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Direction We Are Exploring
&lt;/h2&gt;

&lt;p&gt;At AETHER X GLOBAL, we are exploring how this architecture can support specialist financial and knowledge systems.&lt;/p&gt;

&lt;p&gt;The goal is not to make one model responsible for everything.&lt;/p&gt;

&lt;p&gt;The goal is to create a controlled environment in which different models and specialist tools can contribute according to their strengths, while identity, policy, evidence, security, and accountability remain under system-level control.&lt;/p&gt;

&lt;p&gt;In practical terms:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Models generate intelligence.&lt;br&gt;
Architecture determines whether that intelligence can be trusted and used.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That is the engineering problem I believe is worth solving.&lt;/p&gt;

&lt;p&gt;For teams building multi-model or agentic systems, which layer has proved most difficult in practice: routing, authorization, evaluation, tool security, or auditability?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>architecture</category>
      <category>llm</category>
    </item>
    <item>
      <title>From Capital Markets to AI Automation: Building AETHER X GLOBAL in Public</title>
      <dc:creator>Ahmed Younis</dc:creator>
      <pubDate>Mon, 01 Jun 2026 00:42:33 +0000</pubDate>
      <link>https://dev.to/ahmed-younis-aetherx/from-capital-markets-to-ai-automation-building-aether-x-global-in-public-2g4a</link>
      <guid>https://dev.to/ahmed-younis-aetherx/from-capital-markets-to-ai-automation-building-aether-x-global-in-public-2g4a</guid>
      <description>&lt;p&gt;After years of working across capital markets, client accounts, investment management, investor relations, and financial-market advisory, I have started moving into a new direction: building practical software systems that connect financial-market knowledge with artificial intelligence and modern engineering execution.&lt;/p&gt;

&lt;p&gt;This is the direction behind &lt;strong&gt;AETHER X GLOBAL&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The idea is not only to build software. The real goal is to turn years of market experience, operational understanding, and financial decision-making workflows into useful digital systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this direction matters
&lt;/h2&gt;

&lt;p&gt;Financial markets generate huge amounts of information, but most practical decision-making still depends on fragmented tools, manual processes, and personal interpretation.&lt;/p&gt;

&lt;p&gt;I believe there is a strong opportunity in building systems that combine:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI-assisted workflows&lt;/li&gt;
&lt;li&gt;Market intelligence&lt;/li&gt;
&lt;li&gt;Backend and API infrastructure&lt;/li&gt;
&lt;li&gt;Technical documentation&lt;/li&gt;
&lt;li&gt;GitHub-based delivery&lt;/li&gt;
&lt;li&gt;Practical automation for financial and business use cases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is where my current work is focused.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I am building publicly
&lt;/h2&gt;

&lt;p&gt;At this stage, I am building my public engineering presence step by step.&lt;/p&gt;

&lt;p&gt;This includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A public GitHub engineering portfolio&lt;/li&gt;
&lt;li&gt;Technical documentation&lt;/li&gt;
&lt;li&gt;Open-source contribution activity&lt;/li&gt;
&lt;li&gt;AI automation direction&lt;/li&gt;
&lt;li&gt;FinTech and market-intelligence positioning&lt;/li&gt;
&lt;li&gt;Practical software delivery workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is to make the work visible, structured, and easy to evaluate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why build in public?
&lt;/h2&gt;

&lt;p&gt;Building in public creates accountability.&lt;/p&gt;

&lt;p&gt;It also helps turn execution into evidence.&lt;/p&gt;

&lt;p&gt;Instead of only saying that a product or company is being built, public engineering activity allows people to see the direction, the structure, and the progress over time.&lt;/p&gt;

&lt;p&gt;For AETHER X GLOBAL, this is important because the company direction sits between financial markets, software engineering, and artificial intelligence.&lt;/p&gt;

&lt;h2&gt;
  
  
  Current focus
&lt;/h2&gt;

&lt;p&gt;My current focus is on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI automation workflows&lt;/li&gt;
&lt;li&gt;FinTech systems&lt;/li&gt;
&lt;li&gt;Market-intelligence tools&lt;/li&gt;
&lt;li&gt;Backend infrastructure&lt;/li&gt;
&lt;li&gt;GitHub-based engineering delivery&lt;/li&gt;
&lt;li&gt;Technical documentation&lt;/li&gt;
&lt;li&gt;Practical software systems connected to real business use cases&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is still an early stage, but the direction is clear: build useful, reliable, and commercially relevant digital systems from disciplined execution.&lt;/p&gt;

&lt;p&gt;Official website:&lt;br&gt;&lt;br&gt;
&lt;a href="https://aetherxglobal.com" rel="noopener noreferrer"&gt;https://aetherxglobal.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Engineering portfolio:&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/ahmed369younis-hue/engineering-portfolio" rel="noopener noreferrer"&gt;https://github.com/ahmed369younis-hue/engineering-portfolio&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>buildinpublic</category>
      <category>startup</category>
    </item>
  </channel>
</rss>
