alphameta — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited alphameta (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.
Base reference for the AlphaMeta server. Other AlphaMeta skills assume this server is running — this document covers setup and the common command execution pattern.
Start the server:
alphameta --ibkrThe server listens on http://localhost:18080.
All AlphaMeta commands run via POST /api/v1/execute:
curl -X POST http://localhost:18080/api/v1/execute \
-H "Content-Type: application/json" \
-d '{"cmd": "<command [args]>"}'A successful response returns the result inside a result field, wrapped with success, request_id, and execution_time_ms. On error, the response includes an error object with code and message.
Health check:
curl http://localhost:18080/api/v1/healthCommands are invoked by name with space-separated arguments. For example:
| Request Body | Meaning |
|---|---|
{"cmd": "consensus AAPL"} | Consensus data for AAPL |
{"cmd": "kline AAPL 1d"} | Daily kline for AAPL |
{"cmd": "positions"} | All open positions |
To discover available commands:
| Query | Purpose |
|---|---|
curl http://localhost:18080/api/v1/search | List all commands grouped by category |
curl "http://localhost:18080/api/v1/search?category=Live+Market+Quotes" | List commands in a specific category |
curl "http://localhost:18080/api/v1/search?query=consensus" | Search for a command and see its usage details |
Categories: Live Market Quotes, Order Management, Portfolio, Predicate Management, Quote Management, Technical Indicators, Utilities, Connection, Task Management.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.