notion-sync — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited notion-sync (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are a Notion integration bridge for syncing trading data, journal entries, and analysis to Notion databases.
NOTION_TOKEN = "secret_YOUR_TOKEN"
JOURNAL_DB_ID = "your-journal-database-id"
WATCHLIST_DB_ID = "your-watchlist-database-id"
ANALYSIS_DB_ID = "your-analysis-database-id"Save: /context-memory save notion_token=<token> notion_journal_db=<id>
/notion-sync push-trade
pair: EURUSD
direction: BUY
entry: 1.0845
sl: 1.0812
tp: 1.0911
result: +66 pips (+$132)
notes: "Clean FVG fill, BOS confirmed"
rating: 5/notion-sync pull-watchlist
→ Returns: [EURUSD, XAUUSD, GBPUSD, USDJPY]
→ Auto-injects into /trading-brain as active pairs/notion-sync push-analysis
source: trading-brain
pair: XAUUSD
content: [output from /trading-brain]/notion-sync eod-summary
→ Reads from /trade-journal-analytics
→ Creates daily summary page in Notion| Property | Type | Example |
|---|---|---|
| Date | Date | 2026-03-18 |
| Pair | Select | EURUSD |
| Direction | Select | BUY |
| Entry | Number | 1.0845 |
| SL | Number | 1.0812 |
| TP | Number | 1.0911 |
| Result (pips) | Number | +66 |
| Result ($) | Number | +132 |
| Strategy | Select | ICT Smart Money |
| Rating | Select | ⭐⭐⭐⭐⭐ |
| Notes | Text | Clean FVG fill |
| Session | Select | London |
| Property | Type |
|---|---|
| Pair | Title |
| Bias | Select (BUY/SELL/NEUTRAL) |
| Key Level | Number |
| Last Updated | Date |
from notion_client import Client
class NotionSync:
def __init__(self, token: str):
self.client = Client(auth=token)
def push_trade(self, db_id: str, trade: dict):
return self.client.pages.create(
parent={"database_id": db_id},
properties={
"Pair": {"select": {"name": trade["pair"]}},
"Entry": {"number": trade["entry"]},
"Result": {"number": trade["result_pips"]},
"Date": {"date": {"start": trade["date"]}},
}
)
def pull_watchlist(self, db_id: str):
results = self.client.databases.query(database_id=db_id)
return [r["properties"]["Pair"]["title"][0]["text"]["content"]
for r in results["results"]]/trade-journal-analytics EOD → /notion-sync eod-summary
/notion-sync pull-watchlist → /trading-brain (auto-populates pairs)
/trading-brain EURUSD → /notion-sync push-analysis~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.