Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.05 KB

File metadata and controls

32 lines (22 loc) · 1.05 KB

AGENTS.md — APIExample

Full demo project. Covers all Agora RTC APIs using UIKit + Swift. Default choice when no specific variant is required.

Build Commands

pod install
# Then open APIExample.xcworkspace in Xcode and build (Cmd+B)

App ID Configuration

Edit APIExample/Common/KeyCenter.swift:

static let AppId: String = "YOUR_APP_ID"
static let Certificate: String? = nil   // leave nil if App Certificate is not enabled

To obtain an App ID, see README.md.

Skills

Task Skill When to use
Add or modify a case .agent/skills/upsert-case/ Need to create a new API demo or update an existing one
Code review .agent/skills/review-case/ Review case code for lifecycle, thread safety, and convention compliance
Find an existing case .agent/skills/query-cases/ Locate which file demonstrates a specific API or feature

Further Reading

  • ARCHITECTURE.md — full directory layout, case registration, Entry/Main pattern, engine lifecycle