<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>حسوب I/O - مساهمات المستخدم buidl_25</title>
		<description>المساهمات التي أرسلها buidl_25 - حسوب I/O</description>
		<language>ar</language>
		<generator>حسوب I/O</generator>
		<item>
			<title>ما الذي يحتاجه وكيل الذكاء الاصطناعي فعليًا لفهم واجهة برمجية (API)؟</title>
			<pubDate>Wed, 26 Aug 2026 07:26:58 +0000</pubDate>
			<link>https://io.hsoub.com/artificial_intelligence/185226-%D9%85%D8%A7-%D8%A7%D9%84%D8%B0%D9%8A-%D9%8A%D8%AD%D8%AA%D8%A7%D8%AC%D9%87-%D9%88%D9%83%D9%8A%D9%84-%D8%A7%D9%84%D8%B0%D9%83%D8%A7%D8%A1-%D8%A7%D9%84%D8%A7%D8%B5%D8%B7%D9%86%D8%A7%D8%B9%D9%8A-%D9%81%D8%B9%D9%84%D9%8A%D8%A7-%D9%84%D9%81%D9%87%D9%85-%D9%88%D8%A7%D8%AC%D9%87%D8%A9-%D8%A8%D8%B1%D9%85%D8%AC%D9%8A%D8%A9-api</link>
			<description><![CDATA[قد تكون واجهة برمجية (API) موثقة بشكل مثالي للبشر ومع ذلك يكون من المستحيل تقريبًا على وكيل الذكاء الاصطناعي استخدامها.  يصف OpenAPI الواجهة — المسارات والطرق والمخططات. لكن الوكيل يحتاج إلى المزيد: أوصاف على مستوى النية، ومصادقة قابلة للقراءة آليًا، وتلميحات استرداد الأخطاء، وتصنيفات السلامة. الفجوة بين &quot;موثقة للبشر&quot; و&quot;قابلة للفهم من قبل الوكلاء&quot; لا تتعلق بذكاء النموذج. بل تتعلق بطبقات سياق مفقودة.  تحدد هذه المقالة طبقات السياق الثماني التي تحدد ما إذا كان وكيل مستقل يمكنه اكتشاف وفهم واستخدام واجهتك البرمجية بنجاح.    The Agent Context Flow  When an agent receives a task — &quot;find a payment API and process a refund&quot; — it runs through a decision chain:  Agent ↓ &quot;Where is the API?&quot; → Discovery ↓ &quot;What can I do here?&quot; → Capabilities ↓ &quot;What do I need to provide?&quot; → Inputs ↓ &quot;Do I have permission?&quot; → Authentication ↓ &quot;What does this mean?&quot; → Semantics ↓ &quot;What will I get back?&quot; → Output ↓ &quot;What if something breaks?&quot; → Errors ↓ &quot;Is it safe to do this?&quot; → Safety ↓ SUCCESS / FAILURE  Each layer is a potential failure point. A human developer compensates with experience and intuition. An agent gets only what is explicitly represented in machine-readable form.      1. Discovery — &quot;What is this API?&quot;  An agent cannot use an API it cannot find. Machine-readable discovery is the first layer.  Bad:  No llms.txt, no .well-known endpoints, no ai-sitemap.xml. The API is invisible to autonomous discovery.  Better:  llms.txt at root with API summary. /.well-known/openapi for spec discovery. ai-sitemap.xml listing API endpoints.]]></description>
		</item><item>
			<title>ما الذي يحتاجه وكيل الذكاء الاصطناعي فعليًا لفهم واجهة برمجية (API)؟</title>
			<pubDate>Fri, 21 Aug 2026 08:28:33 +0000</pubDate>
			<link>https://io.hsoub.com/artificial_intelligence/185180-%D9%85%D8%A7-%D8%A7%D9%84%D8%B0%D9%8A-%D9%8A%D8%AD%D8%AA%D8%A7%D8%AC%D9%87-%D9%88%D9%83%D9%8A%D9%84-%D8%A7%D9%84%D8%B0%D9%83%D8%A7%D8%A1-%D8%A7%D9%84%D8%A7%D8%B5%D8%B7%D9%86%D8%A7%D8%B9%D9%8A-%D9%81%D8%B9%D9%84%D9%8A%D8%A7-%D9%84%D9%81%D9%87%D9%85-%D9%88%D8%A7%D8%AC%D9%87%D8%A9-%D8%A8%D8%B1%D9%85%D8%AC%D9%8A%D8%A9-api</link>
			<description><![CDATA[قد تكون واجهة برمجية (API) موثقة بشكل مثالي للبشر ومع ذلك يكون من المستحيل تقريبًا على وكيل الذكاء الاصطناعي استخدامها.  يصف OpenAPI الواجهة — المسارات والطرق والمخططات. لكن الوكيل يحتاج إلى المزيد: أوصاف على مستوى النية، ومصادقة قابلة للقراءة آليًا، وتلميحات استرداد الأخطاء، وتصنيفات السلامة. الفجوة بين &quot;موثقة للبشر&quot; و&quot;قابلة للفهم من قبل الوكلاء&quot; لا تتعلق بذكاء النموذج. بل تتعلق بطبقات سياق مفقودة.  تحدد هذه المقالة طبقات السياق الثماني التي تحدد ما إذا كان وكيل مستقل يمكنه اكتشاف وفهم واستخدام واجهتك البرمجية بنجاح.    The Agent Context Flow  When an agent receives a task — &quot;find a payment API and process a refund&quot; — it runs through a decision chain:  Agent ↓ &quot;Where is the API?&quot; → Discovery ↓ &quot;What can I do here?&quot; → Capabilities ↓ &quot;What do I need to provide?&quot; → Inputs ↓ &quot;Do I have permission?&quot; → Authentication ↓ &quot;What does this mean?&quot; → Semantics ↓ &quot;What will I get back?&quot; → Output ↓ &quot;What if something breaks?&quot; → Errors ↓ &quot;Is it safe to do this?&quot; → Safety ↓ SUCCESS / FAILURE  Each layer is a potential failure point. A human developer compensates with experience and intuition. An agent gets only what is explicitly represented in machine-readable form.      1. Discovery — &quot;What is this API?&quot;  An agent cannot use an API it cannot find. Machine-readable discovery is the first layer.  Bad:  No llms.txt, no .well-known endpoints, no ai-sitemap.xml. The API is invisible to autonomous discovery.  Better:  llms.txt at root with API summary. /.well-known/openapi for spec discovery. ai-sitemap.xml listing API endpoints.]]></description>
		</item><item>
			<title>لماذا يفشل وكلاء الذكاء الاصطناعي في استخدام APIs: 7 أنماط فشل يجب على كل مطور معرفتها</title>
			<pubDate>Thu, 20 Aug 2026 11:49:41 +0000</pubDate>
			<link>https://io.hsoub.com/artificial_intelligence/185170-%D9%84%D9%85%D8%A7%D8%B0%D8%A7-%D9%8A%D9%81%D8%B4%D9%84-%D9%88%D9%83%D9%84%D8%A7%D8%A1-%D8%A7%D9%84%D8%B0%D9%83%D8%A7%D8%A1-%D8%A7%D9%84%D8%A7%D8%B5%D8%B7%D9%86%D8%A7%D8%B9%D9%8A-%D9%81%D9%8A-%D8%A7%D8%B3%D8%AA%D8%AE%D8%AF%D8%A7%D9%85-apis-7-%D8%A3%D9%86%D9%85%D8%A7%D8%B7-%D9%81%D8%B4%D9%84-%D9%8A%D8%AC%D8%A8-%D8%B9%D9%84%D9%89-%D9%83%D9%84-%D9%85%D8%B7%D9%88%D8%B1-%D9%85%D8%B9%D8%B1%D9%81%D8%AA%D9%87%D8%A7</link>
			<description><![CDATA[واجهة API الخاصة بك لا تعاني من مشكلة ذكاء اصطناعي. بل تعاني من مشكلة واجهة.  وكلاء الذكاء الاصطناعي لا يفشلون لأن النموذج غبي. بل يفشلون لأن واجهات API مصممة للبشر، وليس للبرامج المستقلة.  إليك 7 أنماط فشل:    ملف OpenAPI صالح ضروري لكنه غير كافٍ. مثل HTML صالح لكنه غير متاح.  بنينا AgentBadge لقياس كل نمط فشل — 72 فحصاً، مجاناً، بدون تسجيل.  المقال الكامل: agentbadge.xyz/blog/why-ai-agents-fail-to-use-apis  افحص واجهة API الخاصة بك: agentbadge.xyz/services/scanner]]></description>
		</item><item>
			<title>من SEO إلى GEO إلى جاهزية الوكلاء</title>
			<pubDate>Wed, 19 Aug 2026 19:43:16 +0000</pubDate>
			<link>https://io.hsoub.com/artificial_intelligence/185163-%D9%85%D9%86-seo-%D8%A5%D9%84%D9%89-geo-%D8%A5%D9%84%D9%89-%D8%AC%D8%A7%D9%87%D8%B2%D9%8A%D8%A9-%D8%A7%D9%84%D9%88%D9%83%D9%84%D8%A7%D8%A1</link>
			<description><![CDATA[From SEO to GEO to Agent Readiness من SEO إلى GEO إلى جاهزية الوكلاء  يتطور هدف التحسين — من المواقع الإلكترونية (SEO) إلى المحتوى (GEO) إلى واجهات البرمجة والخدمات (Agent Readiness). في هذه المقالة، نوضح الفرق بين SEO وGEO، ولماذا جاهزية الوكلاء ليست &quot;SEO 2.0&quot; بل طبقة تحسين جديدة تمامًا. للمطورين العرب: ما الذي يحتاجه API ليكون &quot;قابلًا للاكتشاف، ومفهومًا، وقابلًا للتنفيذ&quot; من قبل وكلاء الذكاء الاصطناعي؟    Three eras of optimization  SEO helps a human find you.GEO helps AI understand and mention you.Agent Readiness helps an AI agent actually use you.  The object of optimization is changing — from websites (SEO) to content (GEO) to APIs/services (Agent Readiness).    1. SEO changed the web  SEO emerged because a new intermediary appeared — the search engine.  Before:  Website → Human  After:  Website → Search Engine → Human  So websites started becoming machine-discoverable:   keywords  metadata  sitemap  robots.txt  structured data  backlinks  page speed   A whole industry formed around one question: how do you make your website findable by a machine that decides what to show a human?       2. Then came GEO  Generative Engine Optimization. A new intermediary — the LLM.  Content ↓ Search / LLM ↓ AI-generated answer ↓ Human  AI doesn&#39;t just show a link anymore. It:   reads multiple sources  synthesizes information  generates an answer  may select several companies  may never show the user the original website   So a new question emerged:  How do you make your information understandable and useful to generative systems?      3. But GEO still stops before the action  Here&#39;s the pivot.  Suppose a user asks:  &quot;Find me a service that can convert USD to EUR.&quot;  GEO can ensure that AI says:  &quot;AgentBadge recommends Service X.&quot;  But then the agent needs to:  discover API ↓ understand capabilities ↓ understand authentication ↓ understand pricing ↓ call endpoint ↓ handle response ↓ complete transaction  And here GEO is not enough.  AI must not only understand the company. It must be able to work with its interface.       4. The next optimization layer  SEO → Optimize for discovery by search engines ↓ GEO → Optimize information for generative AI ↓ Agent Readiness → Optimize services for autonomous agents    When we first introduced Agent Readiness, we defined it as a measurable property of an API or service. Article 2 showed why SEO optimization isn&#39;t enough. Article 3 raised the problem to the architectural level. This article shows the evolution: SEO → GEO → Agent Readiness.      5. Agent Readiness ≠ SEO 2.0  SEO and GEO primarily optimize information discovery . Agent Readiness optimizes actionability .  Google: &quot;Stripe API&quot; / GEO: &quot;Which payment API should I use?&quot; / Agent: &quot;I need to charge $50 from this customer. Which API can perform this action?&quot;  The agent doesn&#39;t need beautiful text. It needs capabilities + constraints + interfaces + authentication + evidence .    6. Agent Readiness as a new technical layer  And AgentBadge appears as a measurement layer : Measure → Evidence → Fix      7. Why now  The interface is changing.  The web used to be: documents for humans. Now it&#39;s becoming: interfaces for machines.  MCP, APIs, agent protocols, machine-readable documentation, and autonomous workflows are turning APIs into the interface between an agent and the real world .  &quot;Can an AI agent discover, understand and successfully use my service?&quot;     8. Don&#39;t promise too much  Don&#39;t certify. Measure. AgentBadge says: &quot;Here is what an agent can discover, what it can understand, and what evidence we found.&quot;  Discovery 18/20, Documentation 19/25, Authentication 14/20, Machine-readable 18/20, Verification 8/15, Total: 77/100    9. The forecast  SEO didn&#39;t disappear when GEO appeared. GEO won&#39;t disappear when agents become mainstream. These layers will coexist.  Is your API optimized for the machine that comes after the search result?   Scan your API →  — Free, no signup, 72 checks in seconds.    For AI Agents  Primary entry point — Agent Knowledge Index:  agentbadge.xyz/agent-guide/  LLM entry point:  agentbadge.xyz/llms.txt    Related articles   What Is Agent Readiness?  Your API Has SEO. Does It Have Agent Readiness?  The Web Is Becoming Agentic. What Happens to API Discovery?     Don&#39;t certify. Measure.]]></description>
		</item><item>
			<title>ما هي جاهزية الوكلاء (Agent Readiness)؟ وكيف تجعل واجهات برمجة التطبيقات قابلة للاكتشاف والاستخدام بواسطة وكلاء الذكاء الاصطناعي</title>
			<pubDate>Wed, 19 Aug 2026 13:51:29 +0000</pubDate>
			<link>https://io.hsoub.com/artificial_intelligence/185154-%D9%85%D8%A7-%D9%87%D9%8A-%D8%AC%D8%A7%D9%87%D8%B2%D9%8A%D8%A9-%D8%A7%D9%84%D9%88%D9%83%D9%84%D8%A7%D8%A1-agent-readiness-%D9%88%D9%83%D9%8A%D9%81-%D8%AA%D8%AC%D8%B9%D9%84-%D9%88%D8%A7%D8%AC%D9%87%D8%A7%D8%AA-%D8%A8%D8%B1%D9%85%D8%AC%D8%A9-%D8%A7%D9%84%D8%AA%D8%B7%D8%A8%D9%8A%D9%82%D8%A7%D8%AA-%D9%82%D8%A7%D8%A8%D9%84%D8%A9-%D9%84%D9%84%D8%A7%D9%83%D8%AA%D8%B4%D8%A7%D9%81-%D9%88%D8%A7%D9%84%D8%A7%D8%B3%D8%AA%D8%AE%D8%AF%D8%A7%D9%85-%D8%A8%D9%88%D8%A7%D8%B3%D8%B7%D8%A9-%D9%88%D9%83%D9%84%D8%A7%D8%A1-%D8%A7%D9%84%D8%B0%D9%83%D8%A7%D8%A1-%D8%A7%D9%84%D8%A7%D8%B5%D8%B7%D9%86%D8%A7%D8%B9%D9%8A</link>
			<description><![CDATA[هل تساءلت يوماً عن سبب عدم قدرة وكلاء الذكاء الاصطناعي (AI Agents) على استخدام واجهات برمجة التطبيقات (APIs) الخاصة بك رغم أنها ممتازة؟  السبب غالباً ليس في جودة الـ API، بل في عدم جاهزيتها للاستهلاك الآلي. هذا ما نسميه &quot;جاهزية الوكلاء&quot; (Agent Readiness).  تشبه جاهزية الوكلاء ما فعله تحسين محركات البحث (SEO) للمواقع، لكنها تجعل واجهات برمجة التطبيقات مرئية وقابلة للفهم بواسطة وكلاء الذكاء الاصطناعي.  في هذه المقالة نستعرض: - الفرق بين جودة الـ API وجاهزيتها للوكلاء - طبقات جاهزية الوكلاء: الاكتشاف، الفهم، المصادقة، الاستجابة - كيف يقيس AgentBadge جاهزية الوكلاء بطريقة قابلة للتحقق - لماذا &quot;لا تصدّق، بل قِس&quot; هو المبدأ الأساسي  اقرأ المقال كاملاً: https://agentbadge.xyz/blog/what-is-agent-readiness  جرّب فحص الـ API الخاص بك: npx @agentbadge/cli scan https://api.example.com]]></description>
		</item>
	</channel>
</rss>
