mostlyright 0.1.0 → 1.0.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/README.md +16 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# mostlyright
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**The public data SDK for quants and AI agents.**
|
|
4
|
+
|
|
5
|
+
`mostlyright` is the convenience meta-package for the TypeScript SDK. A single `import { research } from "mostlyright"` re-exports the surfaces of `@mostlyrightmd/core`, `@mostlyrightmd/weather`, and `@mostlyrightmd/markets` — weather observations, prediction-market resolvers, and the core join. Direct calls to public APIs. No hosted backend, no API key.
|
|
6
|
+
|
|
7
|
+
Weather + prediction-markets data are live today. SEC filings (EDGAR) and Federal Reserve economic data (FRED) are next.
|
|
4
8
|
|
|
5
9
|
If you only need one slice of the SDK, depend on the scoped packages directly. If you want everything in one import, this is the package.
|
|
6
10
|
|
|
@@ -11,6 +15,15 @@ pnpm add mostlyright
|
|
|
11
15
|
# or: npm install mostlyright
|
|
12
16
|
```
|
|
13
17
|
|
|
14
|
-
##
|
|
18
|
+
## Quickstart
|
|
19
|
+
|
|
20
|
+
```ts
|
|
21
|
+
import { research } from "mostlyright";
|
|
22
|
+
|
|
23
|
+
const rows = await research("KNYC", "2025-01-06", "2025-01-12");
|
|
24
|
+
console.log(rows[0]);
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
15
28
|
|
|
16
|
-
|
|
29
|
+
Quickstart, concepts, and the full API reference live at <https://mostlyright.md/docs/sdk/>.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mostlyright",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Convenience meta-package for the mostlyright TypeScript SDK. Re-exports @mostlyrightmd/core + @mostlyrightmd/weather + @mostlyrightmd/markets so a single `import { research } from 'mostlyright'` works.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@mostlyrightmd/
|
|
22
|
-
"@mostlyrightmd/
|
|
23
|
-
"@mostlyrightmd/
|
|
21
|
+
"@mostlyrightmd/markets": "1.0.0",
|
|
22
|
+
"@mostlyrightmd/weather": "1.0.0",
|
|
23
|
+
"@mostlyrightmd/core": "1.0.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"msw": "2.6.6",
|