moshcode 0.30.0 → 0.31.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 +1 -1
- package/package.json +1 -1
- package/plugins/crypto/.claude-plugin/plugin.json +1 -1
- package/plugins/crypto/commands/help.md +1 -1
- package/plugins/stocks/.claude-plugin/plugin.json +1 -1
- package/plugins/stocks/README.md +5 -3
- package/plugins/stocks/commands/help.md +4 -3
- package/plugins/stocks/commands/{reports.md → list.md} +3 -3
- package/src/plugins.mjs +7 -3
package/README.md
CHANGED
|
@@ -382,7 +382,7 @@ differ only where the markets do. Either one's `/…:help` prints its own list.
|
|
|
382
382
|
| | `stocks@moshcode` | `crypto@moshcode` |
|
|
383
383
|
|---|---|---|
|
|
384
384
|
| shared | `help` `report` `quote` `lookup` | `help` `report` `quote` `lookup` |
|
|
385
|
-
| its own | `signals` `research` `
|
|
385
|
+
| its own | `signals` `research` `list` `discover` | `book` `bars` `spark` `pairs` |
|
|
386
386
|
|
|
387
387
|
So `/stocks:report NVDA` and `/crypto:report BTC` are the same question asked of
|
|
388
388
|
different markets, while `/stocks:signals` (what an executive said on a call)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "crypto",
|
|
4
4
|
"description": "Crypto market data slash commands backed by advis0r.com: live prices, technical scores, order books, OHLCV history and sparklines across Alpaca's US crypto venue.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.4.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "moshcoder",
|
|
8
8
|
"url": "https://moshcode.sh"
|
|
@@ -26,7 +26,7 @@ below. Render it as a compact table, then the notes.
|
|
|
26
26
|
- `stocks@moshcode` is the sibling plugin, and the four shared names mean the
|
|
27
27
|
same thing there: `/stocks:report`, `/stocks:quote`, `/stocks:lookup`,
|
|
28
28
|
`/stocks:help`. It adds `/stocks:signals`, `/stocks:research`,
|
|
29
|
-
`/stocks:
|
|
29
|
+
`/stocks:list` and `/stocks:discover` — transcript and filing work that
|
|
30
30
|
has no crypto equivalent.
|
|
31
31
|
- **These are live venue reads, not stored snapshots** — the opposite of the
|
|
32
32
|
stocks plugin. Prices are Alpaca's US crypto venue alone and can differ
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://anthropic.com/claude-code/plugin.schema.json",
|
|
3
3
|
"name": "stocks",
|
|
4
4
|
"description": "Equity research slash commands backed by advis0r.com: scored reports, extracted signals, transcript search, company-name lookup, and ranked watchlists.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.4.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "moshcoder",
|
|
8
8
|
"url": "https://moshcode.sh"
|
package/plugins/stocks/README.md
CHANGED
|
@@ -12,7 +12,7 @@ and ranked watchlists.
|
|
|
12
12
|
| `/stocks:lookup rivian` | company name → `RIVN` |
|
|
13
13
|
| `/stocks:signals AAPL` | what was actually said, quoted and sourced |
|
|
14
14
|
| `/stocks:research data center` | full-text search across every indexed transcript |
|
|
15
|
-
| `/stocks:
|
|
15
|
+
| `/stocks:list` | every ticker with a stored report, best score first |
|
|
16
16
|
| `/stocks:discover fusion` | a ranked watchlist for a topic (slow) |
|
|
17
17
|
|
|
18
18
|
The first four names mean the same thing in `crypto@moshcode` — `help`,
|
|
@@ -20,8 +20,10 @@ The first four names mean the same thing in `crypto@moshcode` — `help`,
|
|
|
20
20
|
The rest are the parts equities have and crypto does not: transcripts, filings,
|
|
21
21
|
and a watchlist built from them.
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
`/stocks:report` takes a symbol and returns one write-up; `/stocks:list` takes
|
|
24
|
+
none and lists everything covered. `list` was called `reports` until v0.31.0 —
|
|
25
|
+
one letter from `report`, which made it a coin-flip at the prompt. The CLI has
|
|
26
|
+
accepted `moshcode stocks list` all along, so the two surfaces still agree.
|
|
25
27
|
|
|
26
28
|
The `stocks:` prefix is not optional. Claude Code namespaces every plugin
|
|
27
29
|
command as `/<plugin>:<command>` — always, not only when two plugins collide —
|
|
@@ -14,13 +14,14 @@ below. Render it as a compact table, then the notes.
|
|
|
14
14
|
| `/stocks:lookup <company>` | company name → ticker (`rivian` → `RIVN`) |
|
|
15
15
|
| `/stocks:signals <SYMBOL>` | what was actually said, quoted and sourced |
|
|
16
16
|
| `/stocks:research <words…>` | full-text search across every indexed transcript |
|
|
17
|
-
| `/stocks:
|
|
17
|
+
| `/stocks:list` | every ticker with a stored report, best score first |
|
|
18
18
|
| `/stocks:discover <topic>` | a ranked watchlist for a topic (slow — analyzes each candidate) |
|
|
19
19
|
|
|
20
20
|
## Notes to pass on
|
|
21
21
|
|
|
22
|
-
-
|
|
23
|
-
|
|
22
|
+
- `/stocks:report` takes a symbol and returns one write-up; `/stocks:list` takes
|
|
23
|
+
no symbol and lists everything covered. (`list` used to be called `reports`,
|
|
24
|
+
which sat one letter from `report` and was a coin-flip at the prompt.)
|
|
24
25
|
- Every command name is namespaced `/stocks:…`. A bare `/report` is not a
|
|
25
26
|
command — Claude Code always prefixes plugin commands with the plugin name.
|
|
26
27
|
- `crypto@moshcode` is the sibling plugin, and the four shared names mean the
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
|
-
description:
|
|
2
|
+
description: List every ticker with a stored report, best score first.
|
|
3
3
|
argument-hint: "[--limit n] [--sort recent|score|ticker]"
|
|
4
4
|
allowed-tools: Bash(moshcode stocks:*), Bash(curl -sS https://advis0r.com/api/:*)
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
## Task
|
|
8
8
|
|
|
9
|
-
List
|
|
9
|
+
List every ticker advis0r has a stored report for.
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
moshcode stocks
|
|
12
|
+
moshcode stocks list $ARGUMENTS --json
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
Fallback: `curl -sS "https://advis0r.com/api/reports?sort=score&limit=25"`
|
package/src/plugins.mjs
CHANGED
|
@@ -53,17 +53,21 @@ export function marketplaceSource(env = process.env) {
|
|
|
53
53
|
export const PLUGINS = [
|
|
54
54
|
{
|
|
55
55
|
name: "stocks",
|
|
56
|
-
version: "0.
|
|
56
|
+
version: "0.4.0",
|
|
57
57
|
description: "equity research slash commands backed by advis0r.com",
|
|
58
|
+
// `list` rather than `reports`: one letter from `report` is a coin-flip at
|
|
59
|
+
// the prompt, and `index` would read as a market index in a stocks plugin.
|
|
60
|
+
// The CLI already accepts `moshcode stocks list` as an alias, so the two
|
|
61
|
+
// surfaces still agree.
|
|
58
62
|
commands: [
|
|
59
63
|
"/stocks:help", "/stocks:report", "/stocks:quote", "/stocks:lookup",
|
|
60
|
-
"/stocks:signals", "/stocks:research", "/stocks:
|
|
64
|
+
"/stocks:signals", "/stocks:research", "/stocks:list", "/stocks:discover",
|
|
61
65
|
],
|
|
62
66
|
example: "/stocks:report NVDA",
|
|
63
67
|
},
|
|
64
68
|
{
|
|
65
69
|
name: "crypto",
|
|
66
|
-
version: "0.
|
|
70
|
+
version: "0.4.0",
|
|
67
71
|
description: "crypto market data slash commands backed by advis0r.com",
|
|
68
72
|
commands: [
|
|
69
73
|
"/crypto:help", "/crypto:report", "/crypto:quote", "/crypto:lookup",
|