Skip to content

Commit 112f9bc

Browse files
Reframe Morning Signal as public agent starter kit
1 parent 623f651 commit 112f9bc

14 files changed

Lines changed: 760 additions & 176 deletions

.env.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# Required for live runs
1+
# Start here: demo mode runs with deterministic fixtures and no provider keys.
2+
DEMO_MODE=true
3+
4+
# Required only when DEMO_MODE=false
25
NIMBLE_API_KEY=
36
NIMBLE_BASE_URL=https://sdk.nimbleway.com/v1
47
OPENAI_API_KEY=
@@ -8,9 +11,6 @@ LANGSMITH_TRACING=true
811
LANGSMITH_API_KEY=
912
LANGSMITH_PROJECT=nimble-gtm-signal-agent
1013

11-
# Optional: set to true for a reliable presentation run without external API calls
12-
DEMO_MODE=false
13-
1414
# Optional newsletter delivery
1515
RESEND_API_KEY=
1616
NEWSLETTER_FROM="Nimble GTM Signal <onboarding@resend.dev>"

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ data/*.db
1010
data/*.db-*
1111
assignment_extracted.txt
1212
.DS_Store
13+
.vercel
14+
presentation/

.vercelignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.env
2+
.env.*
3+
!.env.example
4+
.next
5+
node_modules
6+
data
7+
presentation
8+
assignment_extracted.txt
9+
*.tsbuildinfo
10+
.DS_Store

CONTRIBUTING.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Contributing
2+
3+
Contributions are welcome if they make Morning Signal a clearer, safer, or more
4+
useful reference implementation for source-grounded agents.
5+
6+
Good contribution areas:
7+
8+
- new adaptation recipes
9+
- clearer docs
10+
- better demo fixtures
11+
- source scoring improvements
12+
- citation validation
13+
- production deployment guides
14+
- UI improvements that preserve the workflow narrative
15+
16+
## Local Development
17+
18+
```bash
19+
npm install
20+
cp .env.example .env
21+
```
22+
23+
For no-secret local development:
24+
25+
```bash
26+
DEMO_MODE=true npm run dev
27+
```
28+
29+
Before opening a pull request:
30+
31+
```bash
32+
npm run typecheck
33+
npm run build
34+
```
35+
36+
## Guidelines
37+
38+
- Keep retrieval, extraction, evidence assembly, and synthesis as separate stages.
39+
- Do not add features that require secrets in demo mode.
40+
- Keep source links inspectable in final outputs.
41+
- Prefer small, readable examples over broad abstractions.
42+
- Document new environment variables in `.env.example`.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Nehal Agrawal
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)