ワンクリックで
trader-signal
Generate trading signals using npx neural-trader anomaly detection engine with Z-score scoring and neural prediction
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate trading signals using npx neural-trader anomaly detection engine with Z-score scoring and neural prediction
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Build or rebuild the ADR index + dependency graph in AgentDB by running the in-process `agentdb index` command (one cold-start, all surfaces in one pass — no per-record npx round-trips). Handles v3-style and plugin-style ADR formats.
Create a new Architecture Decision Record with sequential numbering and AgentDB registration
Hive Mind orchestration patterns — queen-led multi-agent coordination with Byzantine/Raft/Gossip/CRDT consensus, typed collective memory, dialectic council, and session checkpoint/resume. Use for decision-bearing work; use swarm-advanced for parallel execution without consensus.
Analyze git diffs for risk scoring, reviewer recommendations, and change classification
Detect missing test coverage and generate test suggestions
Hive Mind orchestration patterns — queen-led multi-agent coordination with Byzantine/Raft/Gossip/CRDT consensus, typed collective memory, dialectic council, and session checkpoint/resume. Use for decision-bearing work; use swarm-advanced for parallel execution without consensus.
| name | trader-signal |
| description | Generate trading signals using npx neural-trader anomaly detection engine with Z-score scoring and neural prediction |
| allowed-tools | Bash Read mcp__ruflo__memory_store mcp__ruflo__memory_retrieve mcp__ruflo__memory_search mcp__ruflo__memory_delete mcp__ruflo__neural_predict mcp__ruflo__agentdb_pattern-search |
| argument-hint | [--strategy NAME] [--symbols AAPL,MSFT] |
Generate trading signals using neural-trader's anomaly detection engine.
Steps:
npm ls neural-trader 2>/dev/null || npm install neural-tradernpx neural-trader --signal scan --symbols <TICKERS>
With a specific strategy:
npx neural-trader --signal scan --strategy <name> --symbols <TICKERS>
mcp__ruflo__memory_retrieve({ key: "strategy-NAME", namespace: "trading-strategies" })mcp__ruflo__neural_predict({ input: "anomaly types: [DETECTED], scores: [SCORES]" })mcp__ruflo__agentdb_pattern-search({ query: "ANOMALY_TYPE score RANGE", namespace: "trading-signals" })MemoryConsolidator.sweepExpired() pass introduced in ADR-125 Phase 4 — shipped in @sparkleideas/memory@3.0.0-alpha.18 — sweeps them out after they expire):
mcp__ruflo__memory_store({ key: "signal-TIMESTAMP", value: "SIGNALS_JSON", namespace: "trading-signals", expiresAt: Date.now() + 24 * 60 * 60 * 1000 })