@framers/agentos-skills-registry 0.4.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
metadata:
|
|
3
|
+
agentos:
|
|
4
|
+
primaryEnv: INTERNAL_API_SECRET
|
|
5
|
+
emoji: "📧"
|
|
6
|
+
requires:
|
|
7
|
+
env: [INTERNAL_API_SECRET]
|
|
8
|
+
requires_tools:
|
|
9
|
+
- searchAcrossThreads
|
|
10
|
+
- getThreadHierarchy
|
|
11
|
+
- listProjects
|
|
12
|
+
- getProjectSummary
|
|
13
|
+
- getProjectTimeline
|
|
14
|
+
- listAccounts
|
|
15
|
+
- getAttachment
|
|
16
|
+
- createProject
|
|
17
|
+
- addThreadToProject
|
|
18
|
+
- generateReport
|
|
19
|
+
- getDigestPreview
|
|
20
|
+
- syncStatus
|
|
21
|
+
categories: [productivity, email, intelligence]
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
You have access to email intelligence tools for managing and querying email across connected Gmail accounts.
|
|
25
|
+
|
|
26
|
+
## Capabilities
|
|
27
|
+
|
|
28
|
+
- **Search**: Use `searchAcrossThreads` to find emails by natural language query across all indexed content
|
|
29
|
+
- **Threads**: Use `getThreadHierarchy` to see the full reply chain tree for any thread
|
|
30
|
+
- **Projects**: Use `listProjects` to see auto-detected and manual project groupings, `getProjectSummary` for AI status summaries, `getProjectTimeline` for chronological events
|
|
31
|
+
- **Attachments**: Use `getAttachment` to retrieve extracted text from PDFs, DOCX, images
|
|
32
|
+
- **Reports**: Use `generateReport` to create PDF/Markdown/JSON exports of project data
|
|
33
|
+
- **Management**: Use `createProject` and `addThreadToProject` to organize threads into projects
|
|
34
|
+
- **Status**: Use `syncStatus` to check sync health and `listAccounts` for connected inboxes
|
|
35
|
+
|
|
36
|
+
## Guidelines
|
|
37
|
+
|
|
38
|
+
- Default to conversational responses for queries about email content
|
|
39
|
+
- Use structured output (tables, trees) when user requests `/email` commands
|
|
40
|
+
- Always cite source emails (subject, sender, date) when providing information
|
|
41
|
+
- For project queries, prefer `getProjectSummary` over raw search
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: topicality
|
|
3
|
+
version: '1.0.0'
|
|
4
|
+
description: Enforce allowed and forbidden conversation topics using semantic embedding similarity with session-aware drift detection
|
|
5
|
+
author: Frame.dev
|
|
6
|
+
namespace: wunderland
|
|
7
|
+
category: security
|
|
8
|
+
tags: [guardrails, topics, topicality, off-topic, embeddings, drift-detection]
|
|
9
|
+
requires_tools: [check_topic]
|
|
10
|
+
metadata:
|
|
11
|
+
agentos:
|
|
12
|
+
emoji: "\U0001F3AF"
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# Topicality
|
|
16
|
+
|
|
17
|
+
A guardrail automatically enforces conversation topic boundaries. Messages
|
|
18
|
+
matching forbidden topics are blocked. Messages outside allowed topics are
|
|
19
|
+
flagged. Gradual off-topic drift across multiple turns is detected.
|
|
20
|
+
|
|
21
|
+
## When to Use check_topic
|
|
22
|
+
|
|
23
|
+
- To verify if RAG retrieval results are relevant to allowed topics
|
|
24
|
+
- Before presenting user-submitted content to the agent
|
|
25
|
+
- In content moderation workflows
|
|
26
|
+
|
|
27
|
+
## What It Enforces
|
|
28
|
+
|
|
29
|
+
- **Allowed topics**: messages must be semantically related to at least one allowed topic
|
|
30
|
+
- **Forbidden topics**: messages matching a forbidden topic are blocked
|
|
31
|
+
- **Drift detection**: gradual off-topic steering across multiple turns is caught
|
|
32
|
+
|
|
33
|
+
## Constraints
|
|
34
|
+
|
|
35
|
+
- Requires an embedding provider (OpenAI, etc.) to be configured
|
|
36
|
+
- Topic embeddings are computed lazily on first evaluation
|
|
37
|
+
- Drift detection tracks per-session state (cleaned up after 1 hour of inactivity)
|
package/registry.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"content-creator",
|
|
15
15
|
"deep-research",
|
|
16
16
|
"discord-helper",
|
|
17
|
+
"email-intelligence",
|
|
17
18
|
"facebook-bot",
|
|
18
19
|
"git",
|
|
19
20
|
"github",
|
|
@@ -432,6 +433,36 @@
|
|
|
432
433
|
"homepage": "https://discord.com/developers"
|
|
433
434
|
}
|
|
434
435
|
},
|
|
436
|
+
{
|
|
437
|
+
"id": "com.framers.skill.email-intelligence",
|
|
438
|
+
"name": "email-intelligence",
|
|
439
|
+
"displayName": "email-intelligence",
|
|
440
|
+
"version": "1.0.0",
|
|
441
|
+
"path": "registry/curated/email-intelligence",
|
|
442
|
+
"description": "Query and manage email across connected Gmail accounts — search threads, organize projects, extract attachments, and generate reports.",
|
|
443
|
+
"category": "productivity",
|
|
444
|
+
"namespace": "wunderland",
|
|
445
|
+
"verified": true,
|
|
446
|
+
"source": "curated",
|
|
447
|
+
"verifiedAt": "2026-03-14T05:52:19.478Z",
|
|
448
|
+
"keywords": [
|
|
449
|
+
"email",
|
|
450
|
+
"gmail",
|
|
451
|
+
"intelligence",
|
|
452
|
+
"threads",
|
|
453
|
+
"projects",
|
|
454
|
+
"attachments",
|
|
455
|
+
"reports",
|
|
456
|
+
"productivity"
|
|
457
|
+
],
|
|
458
|
+
"requiredSecrets": [
|
|
459
|
+
"email-intelligence.internal_api_secret"
|
|
460
|
+
],
|
|
461
|
+
"metadata": {
|
|
462
|
+
"emoji": "📧",
|
|
463
|
+
"primaryEnv": "INTERNAL_API_SECRET"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
435
466
|
{
|
|
436
467
|
"id": "com.framers.skill.facebook-bot",
|
|
437
468
|
"name": "facebook-bot",
|