norn-cli 3.3.0 → 4.0.1
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/dist/cli.js +1396 -276
- package/dist/knowledgeIndexWorker.js +71 -35
- package/package.json +3 -3
- package/schemas/norn.config.schema.json +13 -0
- package/CLAUDE.md +0 -69
- package/NOW.md +0 -223
- package/demos/agent-workbench/README.md +0 -156
- package/demos/agent-workbench/agents.nornagent +0 -87
- package/demos/agent-workbench/contracts/domain-answer.schema.json +0 -28
- package/demos/agent-workbench/contracts/domain-question.schema.json +0 -34
- package/demos/agent-workbench/contracts/router-verdict.schema.json +0 -43
- package/demos/agent-workbench/contracts/ticket.schema.json +0 -29
- package/demos/agent-workbench/contracts/verdict.schema.json +0 -48
- package/demos/agent-workbench/fake-openai-server.js +0 -128
- package/demos/agent-workbench/fixtures/aligned-ticket.json +0 -10
- package/demos/agent-workbench/fixtures/cross-domain-ticket.json +0 -10
- package/demos/agent-workbench/fixtures/invalid-output-ticket.json +0 -8
- package/demos/agent-workbench/norn.config.json +0 -15
- package/demos/agent-workbench/prompts/ticket-router.md +0 -11
- package/demos/agent-workbench/workbench.norn +0 -32
- package/demos/knowledge-editor/README.md +0 -74
- package/demos/knowledge-editor/agents.nornagent +0 -16
- package/demos/knowledge-editor/api.nornapi +0 -10
- package/demos/knowledge-editor/handbook/ops/flow.svg +0 -1
- package/demos/knowledge-editor/handbook/ops/retired.md +0 -9
- package/demos/knowledge-editor/handbook/ops/runbook.md +0 -14
- package/demos/knowledge-editor/handbook/payments/charges.md +0 -25
- package/demos/knowledge-editor/handbook/payments/pricing-tiers.draft.md +0 -7
- package/demos/knowledge-editor/handbook/payments/refunds/policy.md +0 -12
- package/demos/knowledge-editor/support.norn +0 -10
- package/demos/mcp-ticket-testing/README.md +0 -114
- package/demos/mcp-ticket-testing/agents.nornagent +0 -77
- package/demos/mcp-ticket-testing/contracts/test-run.schema.json +0 -31
- package/demos/mcp-ticket-testing/expectations/proj-142.md +0 -12
- package/demos/mcp-ticket-testing/fixtures/proj-142.json +0 -13
- package/demos/mcp-ticket-testing/prompts/backend-tester.md +0 -12
- package/demos/mcp-ticket-testing/prompts/frontend-tester.md +0 -14
- package/demos/mcp-ticket-testing/prompts/reporter.md +0 -10
- package/demos/mcp-ticket-testing/servers/browser-server.js +0 -133
- package/demos/mcp-ticket-testing/servers/house-server.js +0 -125
- package/demos/mcp-ticket-testing/tickets.norn +0 -32
- package/demos/nornenv-region-refactor/README.md +0 -64
- package/demos/nornenv-showcase/README.md +0 -62
- package/demos/nornenv-showcase/norn.config.json +0 -16
- package/demos/nornenv-showcase/showcase.norn +0 -70
- package/demos/nornenv-showcase/showcase.nornapi +0 -26
- package/demos/nornenv-showcase/showcase.nornsql +0 -20
- package/demos/tests-showcase/01-single-requests.norn +0 -31
- package/demos/tests-showcase/02-sequences.norn +0 -54
- package/demos/tests-showcase/03-sidecars.norn +0 -42
- package/demos/tests-showcase/04-api-plus-sql.norn +0 -27
- package/demos/tests-showcase/db/testDb.nornsql +0 -12
- package/demos/tests-showcase/demo-api.nornapi +0 -17
- package/demos/tests-showcase/norn.config.json +0 -16
- package/playground/ai.norn +0 -15
- package/playground/ai_orchastration.nornagent +0 -34
- package/playground/knowedge_base/ACDC/testing_notes_new_clients.md +0 -11
- package/playground/knowedge_base/nexus_system_prompt.md +0 -1
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
model gpt4o
|
|
2
|
-
provider openai
|
|
3
|
-
name gpt-4o
|
|
4
|
-
apiKey {{OPENAI_API}}
|
|
5
|
-
end model
|
|
6
|
-
|
|
7
|
-
mcp Playwright
|
|
8
|
-
transport stdio
|
|
9
|
-
command npx --yes @playwright/mcp@0.0.79 --headless --isolated --browser chrome
|
|
10
|
-
end mcp
|
|
11
|
-
|
|
12
|
-
mcp Time
|
|
13
|
-
transport http
|
|
14
|
-
url http://localhost:8811/mcp
|
|
15
|
-
header Authorization: Bearer {{OPENAI_API}}
|
|
16
|
-
end mcp
|
|
17
|
-
|
|
18
|
-
knowledge ACDC_Knowedge
|
|
19
|
-
source ./knowedge_base/ACDC
|
|
20
|
-
end knowledge
|
|
21
|
-
|
|
22
|
-
agent Nexus
|
|
23
|
-
model gpt4o
|
|
24
|
-
system file "./knowedge_base/nexus_system_prompt.md"
|
|
25
|
-
knowledge ACDC_Knowedge
|
|
26
|
-
mcp Playwright
|
|
27
|
-
end agent
|
|
28
|
-
|
|
29
|
-
agent TimeTeller
|
|
30
|
-
model gpt4o
|
|
31
|
-
mcp Time
|
|
32
|
-
system "When asked for the time you check the MCP server you have access to and check what the time is now."
|
|
33
|
-
end agent
|
|
34
|
-
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# New Clients Testing Notes
|
|
2
|
-
|
|
3
|
-
General informaftion on how to do testing in ACDC
|
|
4
|
-
|
|
5
|
-
## Guidelines and testing happy path
|
|
6
|
-
You can test by opening the portal and trying to onboard a customer
|
|
7
|
-
|
|
8
|
-
## How to test with new customer
|
|
9
|
-
1. Open the portal
|
|
10
|
-
2. navigate to the sign up button
|
|
11
|
-
3. Click the button and fill out the page
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
You are Nexus you open a webpage when asked using the playwright mcp. They will ussualy provide you with a URL to open in the webpage, if you are not just try to open www.google.com and see if it works if you managed to open it this is success report back and wrap up.
|