スキル一覧に戻る
solvys

pulse

by solvys

the world's first integrated trading environment. Designed by Priced In Research & Solvys Technologies.

0🍴 0📅 2026年1月11日
GitHubで見るManusで実行

SKILL.md


name: pulse description: PULSE is the world's first true AI-powered Integrated Trading Environment (ITE) under **Priced In Research.

Overview

PULSE — Project Rules

MVP Features

  • PsychAssist: Prevents tilting/overtrading via emotional resonance + duration-based execution monitoring
  • RiskFlow: AI-powered news feed interpreting macro data with IV Scoring Matrix

UI Inspiration

  • macroscope.app + Cursor.com aesthetic

Tech Stack

Deployment (Priority Order)

PriorityPlatformUse Case
PrimaryEncore.dev (Encore Cloud)Backend services, APIs, DB, secrets, scheduled jobs
SecondaryCloudflare (Workers/Pages)Edge functions, static hosting, CDN, fallback

Frontend

  • TypeScript (94%+ of codebase)
  • Next.js + Tailwind CSS
  • Electron for desktop app
  • Framer for landing pages (limited deps: Framer Motion, Framer React only)

Backend

  • Encore.dev (TypeScript runtime)
  • PostgreSQL (Encore managed)
  • AWS Bedrock (session management)
  • Clerk (@clerk/clerk-sdk-node) for auth
  • LangChain v0.3.x for AI orchestration
  • VectorDB for embeddings/semantic search

DevOps

  • GitHub Actions for CI/CD
  • Cloudflare Workers for edge compute
  • Secrets via Encore secrets + env vars

Required Patterns

Encore API Endpoints

import { api, APIError } from "encore.dev/api"; export const myEndpoint = api( { method: "POST", path: "/api/resource", auth: true }, async (req: RequestType): Promise => { // Implementation } );

Defensive Null Checks

​ if (!auth?.userID) { console.error("Missing auth data"); return { conversations: [] }; }

Circuit Breaker

​ let circuitBreakerTripped = false; const fetchWithCircuitBreaker = async (url: string) => { if (circuitBreakerTripped) { return { error: "System offline", data: null }; } try { const response = await fetch(url); if (response.status === 500) circuitBreakerTripped = true; return { data: await response.json(), error: null }; } catch (e) { return { error: e.message, data: null }; } };


API Documentation Sources

ServiceDocsKey Areas
Encore.devencore.dev/docsEndpoints, SQLDatabase, Secrets, Auth
Clerkclerk.com/docsAuth, SDK methods, webhooks
AWS Bedrockdocs.aws.amazon.com/bedrockSession mgmt, model invocation
LangChainjs.langchain.com/docsChains, agents, memory, tools
Cloudflaredevelopers.cloudflare.com/workersEdge functions, KV, D1

Codebase Summary

For a comprehensive overview of the codebase architecture, services, APIs, and implementation details, see: .cursor/skills/pulse/CODEBASE-SUMMARY.md

This summary includes:

  • Complete API endpoint documentation
  • Database schema and migrations
  • Service architecture and module breakdown
  • Integration points (TopstepX, AWS Bedrock, Clerk)
  • Known issues and build-time considerations
  • Development patterns and code examples

Current Status

✅ Completed

  • Encore.dev backend (Express migration done)
  • AWS Bedrock Session Management
  • Cloudflare architecture
  • Database migrations + tagged template syntax
  • Circuit breaker + error handling
  • CORS + lazy initialization
  • Clerk auth SDK
  • Secrets management
  • LangChain v0.3.x + VectorDB
  • TypeScript frontend + Electron desktop
  • CI/CD (GitHub Actions)

🚧 In Progress

  • Autopilot Integration
  • News Feed Launch & Debugging
  • Agentic AI for IV Scoring
  • Day-Bound Conversation Thread History
  • App-Agentic Brain Layer ​

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です