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.
Files changed (2) hide show
  1. package/README.md +16 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # mostlyright
2
2
 
3
- Convenience meta-package for the [mostlyright](https://github.com/mostlyrightmd/mostlyright-sdk) TypeScript SDK. Re-exports the surfaces of `@mostlyrightmd/core`, `@mostlyrightmd/weather`, and `@mostlyrightmd/markets` so a single `import { research } from "mostlyright"` works.
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
- ## Docs
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
- See <https://mostlyright.md/docs/sdk/> for quickstart, concepts, and the full API reference.
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": "0.1.0",
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/core": "0.1.0",
22
- "@mostlyrightmd/markets": "0.1.0",
23
- "@mostlyrightmd/weather": "0.1.0"
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",