npm package diff

Package: @forge/manifest

Versions: 11.0.0-next.0 - 11.0.0-next.1

File: package/README.md

Index: package/README.md
===================================================================
--- package/README.md
+++ package/README.md
@@ -16,8 +16,30 @@
 
 console.log(`Valid manifest ? ${results.success}`);
 ```
 
+## Simple Trigger Scopes Validation
+
+For validating trigger event scopes, use the simple validation API that only requires the event name and scopes:
+
+```typescript
+import { validateTriggerScopes } from '@forge/manifest';
+
+// Simple: just pass event and scopes
+const result = await validateTriggerScopes(
+  'avi:jira:assigned:issue',
+  ['read:jira-work']
+);
+
+if (!result.valid) {
+  console.error(`Missing scopes: ${result.missingScopes.join(', ')}`);
+}
+```
+
+This is useful for:
+- External tools that need to verify scope requirements
+- Any service that validates event-scope mappings
+
 ## How to check the errors
 
 In case of an invalid `manifest.yml`, the following information will be populated: