@treeseed/sdk 0.10.27 → 0.11.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 +207 -6
- package/dist/capacity-provider.d.ts +3 -1
- package/dist/capacity-provider.js +25 -5
- package/dist/control-plane.d.ts +1 -0
- package/dist/control-plane.js +38 -13
- package/dist/db/market-schema.d.ts +8860 -6172
- package/dist/db/market-schema.js +108 -0
- package/dist/db/node-sqlite.js +7 -2
- package/dist/hosting/apps.d.ts +12 -0
- package/dist/hosting/apps.js +107 -0
- package/dist/hosting/builtins.d.ts +25 -0
- package/dist/hosting/builtins.js +791 -0
- package/dist/hosting/contracts.d.ts +207 -0
- package/dist/hosting/contracts.js +0 -0
- package/dist/hosting/graph.d.ts +192 -0
- package/dist/hosting/graph.js +1106 -0
- package/dist/hosting/index.d.ts +4 -0
- package/dist/hosting/index.js +4 -0
- package/dist/index.d.ts +11 -4
- package/dist/index.js +71 -7
- package/dist/managed-dependencies.js +1 -2
- package/dist/market-client.d.ts +63 -3
- package/dist/market-client.js +83 -11
- package/dist/operations/services/bootstrap-runner.d.ts +3 -1
- package/dist/operations/services/bootstrap-runner.js +22 -2
- package/dist/operations/services/config-runtime.d.ts +10 -5
- package/dist/operations/services/config-runtime.js +209 -66
- package/dist/operations/services/deploy.d.ts +70 -7
- package/dist/operations/services/deploy.js +579 -64
- package/dist/operations/services/deployment-readiness.d.ts +30 -0
- package/dist/operations/services/deployment-readiness.js +175 -0
- package/dist/operations/services/git-workflow.d.ts +2 -1
- package/dist/operations/services/git-workflow.js +9 -3
- package/dist/operations/services/github-actions-verification.d.ts +1 -0
- package/dist/operations/services/github-actions-verification.js +1 -0
- package/dist/operations/services/github-api.js +1 -1
- package/dist/operations/services/github-automation.d.ts +1 -1
- package/dist/operations/services/github-automation.js +4 -3
- package/dist/operations/services/github-credentials.d.ts +13 -0
- package/dist/operations/services/github-credentials.js +58 -0
- package/dist/operations/services/hosted-service-checks.d.ts +63 -0
- package/dist/operations/services/hosted-service-checks.js +327 -0
- package/dist/operations/services/hub-provider-launch.js +3 -3
- package/dist/operations/services/live-hosted-service-checks.d.ts +25 -0
- package/dist/operations/services/live-hosted-service-checks.js +350 -0
- package/dist/operations/services/managed-host-security.js +1 -1
- package/dist/operations/services/operations-runner-smoke.d.ts +30 -0
- package/dist/operations/services/operations-runner-smoke.js +180 -0
- package/dist/operations/services/package-adapters.d.ts +95 -0
- package/dist/operations/services/package-adapters.js +288 -0
- package/dist/operations/services/package-reference-policy.d.ts +1 -0
- package/dist/operations/services/package-reference-policy.js +15 -2
- package/dist/operations/services/project-platform.d.ts +80 -22
- package/dist/operations/services/project-platform.js +49 -8
- package/dist/operations/services/project-web-monitor.js +26 -4
- package/dist/operations/services/railway-api.d.ts +88 -5
- package/dist/operations/services/railway-api.js +626 -35
- package/dist/operations/services/railway-deploy.d.ts +46 -40
- package/dist/operations/services/railway-deploy.js +261 -293
- package/dist/operations/services/release-candidate.d.ts +19 -0
- package/dist/operations/services/release-candidate.js +375 -38
- package/dist/operations/services/repository-save-orchestrator.d.ts +3 -1
- package/dist/operations/services/repository-save-orchestrator.js +279 -66
- package/dist/operations/services/runtime-tools.d.ts +1 -0
- package/dist/operations/services/runtime-tools.js +10 -9
- package/dist/operations/services/template-registry.js +14 -7
- package/dist/operations/services/verification-cache.d.ts +25 -0
- package/dist/operations/services/verification-cache.js +71 -0
- package/dist/operations/services/workspace-dependency-mode.js +9 -1
- package/dist/operations/services/workspace-save.js +1 -1
- package/dist/operations/services/workspace-tools.js +2 -1
- package/dist/platform/contracts.d.ts +32 -1
- package/dist/platform/deploy-config.js +73 -8
- package/dist/platform/env.yaml +163 -35
- package/dist/platform/environment.d.ts +1 -0
- package/dist/platform/environment.js +74 -5
- package/dist/platform/plugin.d.ts +9 -0
- package/dist/platform-operation-store.js +2 -2
- package/dist/platform-operations.js +1 -1
- package/dist/reconcile/bootstrap-systems.js +2 -2
- package/dist/reconcile/builtin-adapters.js +372 -189
- package/dist/reconcile/contracts.d.ts +9 -5
- package/dist/reconcile/desired-state.d.ts +1 -0
- package/dist/reconcile/desired-state.js +5 -5
- package/dist/reconcile/engine.d.ts +5 -2
- package/dist/reconcile/engine.js +53 -32
- package/dist/reconcile/index.d.ts +2 -0
- package/dist/reconcile/index.js +2 -0
- package/dist/reconcile/live-acceptance.d.ts +79 -0
- package/dist/reconcile/live-acceptance.js +1615 -0
- package/dist/reconcile/platform.d.ts +104 -0
- package/dist/reconcile/platform.js +100 -0
- package/dist/reconcile/state.js +4 -4
- package/dist/reconcile/units.js +2 -2
- package/dist/scripts/deployment-readiness.js +20 -0
- package/dist/scripts/generate-treedx-openapi-types.js +186 -0
- package/dist/scripts/operations-runner-smoke.js +16 -0
- package/dist/scripts/release-verify.js +4 -1
- package/dist/scripts/template-catalog.test.js +7 -7
- package/dist/scripts/tenant-workflow-action.js +10 -1
- package/dist/sdk-types.d.ts +172 -5
- package/dist/sdk-types.js +28 -3
- package/dist/sdk.d.ts +35 -24
- package/dist/sdk.js +186 -17
- package/dist/template-launch-requirements.js +9 -0
- package/dist/treedx/adapters.d.ts +6 -0
- package/dist/treedx/adapters.js +36 -0
- package/dist/treedx/client.d.ts +222 -0
- package/dist/treedx/client.js +871 -0
- package/dist/treedx/errors.d.ts +13 -0
- package/dist/treedx/errors.js +17 -0
- package/dist/treedx/federated-client.d.ts +27 -0
- package/dist/treedx/federated-client.js +158 -0
- package/dist/treedx/generated/openapi-types.d.ts +3558 -0
- package/dist/treedx/generated/openapi-types.js +0 -0
- package/dist/treedx/graph-adapter.d.ts +33 -0
- package/dist/treedx/graph-adapter.js +156 -0
- package/dist/treedx/index.d.ts +14 -0
- package/dist/treedx/index.js +48 -0
- package/dist/treedx/market-integration.d.ts +27 -0
- package/dist/treedx/market-integration.js +131 -0
- package/dist/treedx/ports.d.ts +166 -0
- package/dist/treedx/ports.js +231 -0
- package/dist/treedx/query-adapter.d.ts +19 -0
- package/dist/treedx/query-adapter.js +62 -0
- package/dist/treedx/registry-client.d.ts +11 -0
- package/dist/treedx/registry-client.js +19 -0
- package/dist/treedx/repository-adapter.d.ts +45 -0
- package/dist/treedx/repository-adapter.js +308 -0
- package/dist/treedx/sdk-integration.d.ts +27 -0
- package/dist/treedx/sdk-integration.js +63 -0
- package/dist/treedx/types.d.ts +1084 -0
- package/dist/treedx/types.js +8 -0
- package/dist/treedx/workspace-adapter.d.ts +27 -0
- package/dist/treedx/workspace-adapter.js +65 -0
- package/dist/treedx-backends.d.ts +218 -0
- package/dist/treedx-backends.js +632 -0
- package/dist/treedx-client.d.ts +86 -0
- package/dist/treedx-client.js +175 -0
- package/dist/treeseed/template-catalog/catalog.fixture.json +497 -138
- package/dist/workflow/operations.d.ts +119 -13
- package/dist/workflow/operations.js +309 -53
- package/dist/workflow-state.d.ts +13 -0
- package/dist/workflow-state.js +43 -26
- package/dist/workflow-support.d.ts +11 -3
- package/dist/workflow-support.js +67 -3
- package/dist/workflow.d.ts +5 -0
- package/drizzle/market/0004_treedx_market_integration.sql +99 -0
- package/package.json +34 -3
- package/templates/github/deploy-web.workflow.yml +39 -6
- package/dist/treeseed/template-catalog/templates/starter-basic/template/astro.config.d.ts +0 -3
- package/dist/treeseed/template-catalog/templates/starter-basic/template/astro.config.ts +0 -6
- package/dist/treeseed/template-catalog/templates/starter-basic/template/package.json +0 -35
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/api/server.js +0 -4
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/config.yaml +0 -65
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/decisions/adopt-initial-proposal-loop.mdx +0 -22
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/empty/.gitkeep +0 -1
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/knowledge/handbook/index.mdx +0 -11
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/pages/welcome.mdx +0 -11
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/people/starter-steward.mdx +0 -11
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/proposals/establish-initial-proposal-loop.mdx +0 -17
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content.config.d.ts +0 -1
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content.config.ts +0 -3
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/env.yaml +0 -1
- package/dist/treeseed/template-catalog/templates/starter-basic/template/src/manifest.yaml +0 -26
- package/dist/treeseed/template-catalog/templates/starter-basic/template/treeseed.site.yaml +0 -74
- package/dist/treeseed/template-catalog/templates/starter-basic/template/tsconfig.json +0 -9
- package/dist/treeseed/template-catalog/templates/starter-basic/template.config.json +0 -103
|
@@ -73,21 +73,20 @@ __WORKING_DIRECTORY_BLOCK__ web:
|
|
|
73
73
|
TREESEED_API_WEB_SERVICE_SECRET: ${{ secrets.TREESEED_API_WEB_SERVICE_SECRET || secrets.TREESEED_WEB_SERVICE_SECRET }}
|
|
74
74
|
TREESEED_API_WEB_ASSERTION_SECRET: ${{ secrets.TREESEED_API_WEB_ASSERTION_SECRET || secrets.TREESEED_WEB_ASSERTION_SECRET }}
|
|
75
75
|
TREESEED_API_AUTH_SECRET: ${{ secrets.TREESEED_API_AUTH_SECRET || secrets.TREESEED_BETTER_AUTH_SECRET }}
|
|
76
|
-
TREESEED_PLATFORM_RUNNER_SECRET: ${{ secrets.TREESEED_PLATFORM_RUNNER_SECRET }}
|
|
77
76
|
TREESEED_HOSTED_HUBS_GITHUB_OWNER: ${{ vars.TREESEED_HOSTED_HUBS_GITHUB_OWNER }}
|
|
78
77
|
TREESEED_HOSTED_HUBS_GITHUB_TOKEN: ${{ secrets.TREESEED_HOSTED_HUBS_GITHUB_TOKEN }}
|
|
79
78
|
TREESEED_SITE_URL: ${{ vars.TREESEED_SITE_URL }}
|
|
80
79
|
BETTER_AUTH_URL: ${{ vars.BETTER_AUTH_URL || vars.TREESEED_SITE_URL }}
|
|
81
80
|
TREESEED_CENTRAL_MARKET_API_BASE_URL: ${{ vars.TREESEED_CENTRAL_MARKET_API_BASE_URL || 'https://api.treeseed.ai' }}
|
|
82
|
-
|
|
83
|
-
TREESEED_CATALOG_MARKET_API_BASE_URLS: ${{ vars.TREESEED_CATALOG_MARKET_API_BASE_URLS || vars.
|
|
81
|
+
TREESEED_API_BASE_URL: ${{ vars.TREESEED_API_BASE_URL || vars.TREESEED_CENTRAL_MARKET_API_BASE_URL || 'https://api.treeseed.ai' }}
|
|
82
|
+
TREESEED_CATALOG_MARKET_API_BASE_URLS: ${{ vars.TREESEED_CATALOG_MARKET_API_BASE_URLS || vars.TREESEED_API_BASE_URL || vars.TREESEED_CENTRAL_MARKET_API_BASE_URL || 'https://api.treeseed.ai' }}
|
|
84
83
|
TREESEED_HOSTING_KIND: ${{ vars.TREESEED_HOSTING_KIND }}
|
|
85
84
|
TREESEED_HOSTING_REGISTRATION: ${{ vars.TREESEED_HOSTING_REGISTRATION }}
|
|
86
85
|
TREESEED_HOSTING_TEAM_ID: ${{ vars.TREESEED_HOSTING_TEAM_ID }}
|
|
87
86
|
TREESEED_PROJECT_ID: ${{ inputs.project_id || vars.TREESEED_PROJECT_ID }}
|
|
88
87
|
TREESEED_WORKFLOW_ACTION: ${{ inputs.action_kind }}
|
|
89
88
|
TREESEED_WORKFLOW_ENVIRONMENT: ${{ inputs.environment }}
|
|
90
|
-
TREESEED_WORKFLOW_PLANE:
|
|
89
|
+
TREESEED_WORKFLOW_PLANE: web
|
|
91
90
|
TREESEED_WORKFLOW_PROJECT: ${{ inputs.project_id || vars.TREESEED_PROJECT_ID }}
|
|
92
91
|
TREESEED_WORKFLOW_PREVIEW_ID: ${{ inputs.preview_id }}
|
|
93
92
|
steps:
|
|
@@ -105,14 +104,48 @@ __WORKING_DIRECTORY_BLOCK__ web:
|
|
|
105
104
|
shell: bash
|
|
106
105
|
run: |
|
|
107
106
|
set -euo pipefail
|
|
108
|
-
node
|
|
107
|
+
node <<'NODE'
|
|
108
|
+
const fs = require('fs');
|
|
109
|
+
const path = require('path');
|
|
110
|
+
const packageRoot = 'packages';
|
|
111
|
+
if (fs.existsSync(packageRoot)) {
|
|
112
|
+
const localPackageNames = new Set();
|
|
113
|
+
for (const entry of fs.readdirSync(packageRoot, { withFileTypes: true })) {
|
|
114
|
+
if (!entry.isDirectory()) continue;
|
|
115
|
+
const file = path.join(packageRoot, entry.name, 'package.json');
|
|
116
|
+
if (!fs.existsSync(file)) continue;
|
|
117
|
+
const manifest = JSON.parse(fs.readFileSync(file, 'utf8'));
|
|
118
|
+
if (typeof manifest.name === 'string') localPackageNames.add(manifest.name);
|
|
119
|
+
}
|
|
120
|
+
for (const entry of fs.readdirSync(packageRoot, { withFileTypes: true })) {
|
|
121
|
+
if (!entry.isDirectory()) continue;
|
|
122
|
+
const file = path.join(packageRoot, entry.name, 'package.json');
|
|
123
|
+
if (!fs.existsSync(file)) continue;
|
|
124
|
+
const manifest = JSON.parse(fs.readFileSync(file, 'utf8'));
|
|
125
|
+
let changed = false;
|
|
126
|
+
if (manifest.scripts?.prepare) {
|
|
127
|
+
delete manifest.scripts.prepare;
|
|
128
|
+
changed = true;
|
|
129
|
+
}
|
|
130
|
+
for (const section of ['dependencies', 'devDependencies', 'optionalDependencies']) {
|
|
131
|
+
for (const dependencyName of Object.keys(manifest[section] ?? {})) {
|
|
132
|
+
if (dependencyName !== manifest.name && localPackageNames.has(dependencyName)) {
|
|
133
|
+
delete manifest[section][dependencyName];
|
|
134
|
+
changed = true;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
if (changed) fs.writeFileSync(file, `${JSON.stringify(manifest, null, '\t')}\n`);
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
NODE
|
|
109
142
|
npm ci --ignore-scripts
|
|
110
143
|
|
|
111
144
|
- name: Build package artifacts
|
|
112
145
|
shell: bash
|
|
113
146
|
run: |
|
|
114
147
|
set -euo pipefail
|
|
115
|
-
for dir in packages/sdk packages/agent packages/core packages/cli; do
|
|
148
|
+
for dir in packages/sdk packages/ui packages/agent packages/core packages/cli; do
|
|
116
149
|
if test -f "${dir}/package.json"; then npm --prefix "${dir}" run build:dist; fi
|
|
117
150
|
done
|
|
118
151
|
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "__SITE_SLUG__",
|
|
3
|
-
"version": "0.1.0",
|
|
4
|
-
"private": true,
|
|
5
|
-
"type": "module",
|
|
6
|
-
"packageManager": "npm@11.7.0",
|
|
7
|
-
"engines": {
|
|
8
|
-
"node": ">=22"
|
|
9
|
-
},
|
|
10
|
-
"scripts": {
|
|
11
|
-
"setup": "npm install",
|
|
12
|
-
"setup:ci": "npm ci",
|
|
13
|
-
"config": "treeseed config",
|
|
14
|
-
"preflight": "treeseed preflight",
|
|
15
|
-
"dev": "treeseed dev",
|
|
16
|
-
"capacity": "treeseed capacity",
|
|
17
|
-
"check": "treeseed check",
|
|
18
|
-
"build:web": "treeseed build",
|
|
19
|
-
"build": "npm run build:web",
|
|
20
|
-
"deploy": "treeseed release",
|
|
21
|
-
"preview": "treeseed preview",
|
|
22
|
-
"sync": "treeseed sync",
|
|
23
|
-
"verify": "npm run check && npm run build"
|
|
24
|
-
},
|
|
25
|
-
"dependencies": {
|
|
26
|
-
"@treeseed/cli": "__CLI_VERSION__",
|
|
27
|
-
"@treeseed/core": "__CORE_VERSION__",
|
|
28
|
-
"@treeseed/sdk": "__SDK_VERSION__",
|
|
29
|
-
"yaml": "^2.8.1"
|
|
30
|
-
},
|
|
31
|
-
"devDependencies": {
|
|
32
|
-
"@types/node": "^24.6.0",
|
|
33
|
-
"typescript": "^5.9.3"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
site:
|
|
2
|
-
name: __SITE_NAME__
|
|
3
|
-
statement: A Treeseed site generated from the basic starter template.
|
|
4
|
-
siteUrl: __SITE_URL__
|
|
5
|
-
githubRepository: __REPOSITORY_URL__
|
|
6
|
-
discordLink: __DISCORD_URL__
|
|
7
|
-
headerMenu:
|
|
8
|
-
- label: Learn
|
|
9
|
-
items:
|
|
10
|
-
- label: Handbook
|
|
11
|
-
href: /knowledge/handbook/
|
|
12
|
-
- label: Proposals
|
|
13
|
-
href: /proposals/
|
|
14
|
-
- label: Decisions
|
|
15
|
-
href: /decisions/
|
|
16
|
-
- label: Build
|
|
17
|
-
items:
|
|
18
|
-
- label: Welcome
|
|
19
|
-
href: /welcome/
|
|
20
|
-
footerMenu:
|
|
21
|
-
- label: Project
|
|
22
|
-
items:
|
|
23
|
-
- label: Repository
|
|
24
|
-
href: __REPOSITORY_URL__
|
|
25
|
-
forms:
|
|
26
|
-
apiBaseUrl: /api/form/submit
|
|
27
|
-
emailNotifications:
|
|
28
|
-
contactRouting:
|
|
29
|
-
default:
|
|
30
|
-
- __CONTACT_EMAIL__
|
|
31
|
-
subscribeRecipients:
|
|
32
|
-
- __CONTACT_EMAIL__
|
|
33
|
-
summary: __SITE_NAME__ is a Treeseed site generated from the basic starter.
|
|
34
|
-
projectStage: Initial build
|
|
35
|
-
projectStageDetail: Generated from the Treeseed basic starter template.
|
|
36
|
-
models:
|
|
37
|
-
pages:
|
|
38
|
-
defaults:
|
|
39
|
-
pageLayout: article
|
|
40
|
-
stage: starter
|
|
41
|
-
audience: []
|
|
42
|
-
docs:
|
|
43
|
-
defaults:
|
|
44
|
-
tags: []
|
|
45
|
-
notes:
|
|
46
|
-
defaults:
|
|
47
|
-
author: __SITE_NAME__
|
|
48
|
-
draft: false
|
|
49
|
-
tags: []
|
|
50
|
-
questions:
|
|
51
|
-
defaults:
|
|
52
|
-
draft: false
|
|
53
|
-
tags: []
|
|
54
|
-
objectives:
|
|
55
|
-
defaults:
|
|
56
|
-
draft: false
|
|
57
|
-
tags: []
|
|
58
|
-
proposals:
|
|
59
|
-
defaults:
|
|
60
|
-
draft: false
|
|
61
|
-
tags: []
|
|
62
|
-
decisions:
|
|
63
|
-
defaults:
|
|
64
|
-
draft: false
|
|
65
|
-
tags: []
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
id: decision:adopt-initial-proposal-loop
|
|
3
|
-
title: Adopt The Initial Proposal Loop
|
|
4
|
-
description: Seed the starter with a decision record alongside the initial proposal.
|
|
5
|
-
date: 2026-04-17
|
|
6
|
-
summary: The starter demonstrates that decisions are first-class records, not hidden implementation residue.
|
|
7
|
-
status: live
|
|
8
|
-
decisionType: approved
|
|
9
|
-
rationale: Teams benefit from a visible pattern for recording what was chosen and why.
|
|
10
|
-
authority: Starter template
|
|
11
|
-
primaryContributor: starter-steward
|
|
12
|
-
relatedObjectives: []
|
|
13
|
-
relatedQuestions: []
|
|
14
|
-
relatedNotes: []
|
|
15
|
-
relatedProposals:
|
|
16
|
-
- establish-initial-proposal-loop
|
|
17
|
-
relatedBooks: []
|
|
18
|
-
implements:
|
|
19
|
-
- starter
|
|
20
|
-
---
|
|
21
|
-
|
|
22
|
-
This starter decision exists to make the proposal-to-decision loop visible in a freshly generated TreeSeed site.
|
package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content/empty/.gitkeep
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Handbook
|
|
3
|
-
description: Starter handbook for the generated Treeseed site.
|
|
4
|
-
tags:
|
|
5
|
-
- handbook
|
|
6
|
-
- starter
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
`__SITE_NAME__` is connected to the Treeseed runtime through `@treeseed/core`.
|
|
10
|
-
|
|
11
|
-
Use this handbook as the first docs collection entry.
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
title: Welcome
|
|
3
|
-
description: Welcome page for the generated Treeseed starter site.
|
|
4
|
-
slug: welcome
|
|
5
|
-
summary: A starter page proving the tenant content pipeline is wired correctly.
|
|
6
|
-
updated: 2026-04-08
|
|
7
|
-
---
|
|
8
|
-
|
|
9
|
-
Welcome to `__SITE_NAME__`.
|
|
10
|
-
|
|
11
|
-
This site was generated from the TreeSeed basic starter.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
id: proposal:establish-initial-proposal-loop
|
|
3
|
-
title: Establish The Initial Proposal Loop
|
|
4
|
-
description: Seed the starter with a proposal so suggested changes are explicit from day one.
|
|
5
|
-
date: 2026-04-17
|
|
6
|
-
summary: The starter should show how a team can move from questions and objectives into a concrete proposal.
|
|
7
|
-
status: live
|
|
8
|
-
proposalType: strategy
|
|
9
|
-
motivation: New sites should inherit a visible proposal-to-decision pattern instead of recreating it ad hoc.
|
|
10
|
-
primaryContributor: starter-steward
|
|
11
|
-
relatedObjectives: []
|
|
12
|
-
relatedQuestions: []
|
|
13
|
-
relatedNotes: []
|
|
14
|
-
relatedBooks: []
|
|
15
|
-
---
|
|
16
|
-
|
|
17
|
-
Use this starter proposal as a placeholder for the first concrete change a team wants to make in its site or operating model.
|
package/dist/treeseed/template-catalog/templates/starter-basic/template/src/content.config.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const collections: any;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
entries: {}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
id: __SITE_SLUG__
|
|
2
|
-
siteConfigPath: ./src/config.yaml
|
|
3
|
-
content:
|
|
4
|
-
docs: ./src/content/knowledge
|
|
5
|
-
pages: ./src/content/pages
|
|
6
|
-
notes: ./src/content/notes
|
|
7
|
-
questions: ./src/content/questions
|
|
8
|
-
objectives: ./src/content/objectives
|
|
9
|
-
proposals: ./src/content/proposals
|
|
10
|
-
decisions: ./src/content/decisions
|
|
11
|
-
people: ./src/content/people
|
|
12
|
-
agents: ./src/content/agents
|
|
13
|
-
books: ./src/content/books
|
|
14
|
-
templates: ./src/content/templates
|
|
15
|
-
knowledge_packs: ./src/content/knowledge-packs
|
|
16
|
-
workdays: ./src/content/workdays
|
|
17
|
-
features:
|
|
18
|
-
docs: true
|
|
19
|
-
books: false
|
|
20
|
-
notes: true
|
|
21
|
-
questions: true
|
|
22
|
-
objectives: true
|
|
23
|
-
proposals: true
|
|
24
|
-
decisions: true
|
|
25
|
-
agents: true
|
|
26
|
-
forms: false
|
|
@@ -1,74 +0,0 @@
|
|
|
1
|
-
name: __SITE_NAME__
|
|
2
|
-
slug: __SITE_SLUG__
|
|
3
|
-
siteUrl: __SITE_URL__
|
|
4
|
-
contactEmail: __CONTACT_EMAIL__
|
|
5
|
-
hosting:
|
|
6
|
-
kind: hosted_project
|
|
7
|
-
registration: optional
|
|
8
|
-
marketBaseUrl: https://knowledge.coop
|
|
9
|
-
teamId: __SITE_SLUG__
|
|
10
|
-
projectId: __SITE_SLUG__
|
|
11
|
-
cloudflare:
|
|
12
|
-
accountId: replace-with-cloudflare-account-id
|
|
13
|
-
workerName: __SITE_SLUG__
|
|
14
|
-
queueName: __SITE_SLUG__-agent-work
|
|
15
|
-
dlqName: __SITE_SLUG__-agent-work-dlq
|
|
16
|
-
pages:
|
|
17
|
-
projectName: __SITE_SLUG__
|
|
18
|
-
previewProjectName: __SITE_SLUG__-staging
|
|
19
|
-
productionBranch: main
|
|
20
|
-
stagingBranch: staging
|
|
21
|
-
buildOutputDir: dist
|
|
22
|
-
r2:
|
|
23
|
-
binding: TREESEED_CONTENT_BUCKET
|
|
24
|
-
bucketName: __SITE_SLUG__-content
|
|
25
|
-
manifestKeyTemplate: teams/{teamId}/published/common.json
|
|
26
|
-
previewRootTemplate: teams/{teamId}/previews
|
|
27
|
-
previewTtlHours: 168
|
|
28
|
-
surfaces:
|
|
29
|
-
web:
|
|
30
|
-
enabled: true
|
|
31
|
-
provider: cloudflare
|
|
32
|
-
rootDir: .
|
|
33
|
-
publicBaseUrl: https://__SITE_SLUG__.pages.dev
|
|
34
|
-
localBaseUrl: http://127.0.0.1:4321
|
|
35
|
-
api:
|
|
36
|
-
enabled: true
|
|
37
|
-
provider: railway
|
|
38
|
-
rootDir: .
|
|
39
|
-
localBaseUrl: http://127.0.0.1:3000
|
|
40
|
-
services:
|
|
41
|
-
api:
|
|
42
|
-
enabled: true
|
|
43
|
-
provider: railway
|
|
44
|
-
rootDir: .
|
|
45
|
-
publicBaseUrl: https://__SITE_SLUG__-api.up.railway.app
|
|
46
|
-
railway:
|
|
47
|
-
serviceName: __SITE_SLUG__-api
|
|
48
|
-
buildCommand: npm run build:api
|
|
49
|
-
startCommand: node ./src/api/server.js
|
|
50
|
-
healthcheckTimeoutSeconds: 120
|
|
51
|
-
environments:
|
|
52
|
-
local:
|
|
53
|
-
baseUrl: http://127.0.0.1:3000
|
|
54
|
-
plugins:
|
|
55
|
-
- package: '@treeseed/core/plugin-default'
|
|
56
|
-
providers:
|
|
57
|
-
forms: store_only
|
|
58
|
-
agents:
|
|
59
|
-
execution: codex
|
|
60
|
-
mutation: local_branch
|
|
61
|
-
repository: git
|
|
62
|
-
verification: local
|
|
63
|
-
notification: sdk_message
|
|
64
|
-
research: project_graph
|
|
65
|
-
deploy: cloudflare
|
|
66
|
-
content:
|
|
67
|
-
runtime: team_scoped_r2_overlay
|
|
68
|
-
publish: team_scoped_r2_overlay
|
|
69
|
-
docs: default
|
|
70
|
-
site: default
|
|
71
|
-
smtp:
|
|
72
|
-
enabled: false
|
|
73
|
-
turnstile:
|
|
74
|
-
enabled: false
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"id": "starter-basic",
|
|
4
|
-
"displayName": "TreeSeed Basic",
|
|
5
|
-
"description": "Opinionated first-party TreeSeed starter for documentation-first teams.",
|
|
6
|
-
"category": "starter",
|
|
7
|
-
"tags": [
|
|
8
|
-
"starter",
|
|
9
|
-
"astro",
|
|
10
|
-
"cloudflare",
|
|
11
|
-
"docs"
|
|
12
|
-
],
|
|
13
|
-
"templateVersion": "1.0.0",
|
|
14
|
-
"templateApiVersion": 1,
|
|
15
|
-
"minCliVersion": "0.1.1",
|
|
16
|
-
"minCoreVersion": "0.1.2",
|
|
17
|
-
"variables": [
|
|
18
|
-
{
|
|
19
|
-
"name": "Site name",
|
|
20
|
-
"token": "__SITE_NAME__",
|
|
21
|
-
"deriveFrom": "name",
|
|
22
|
-
"required": true
|
|
23
|
-
},
|
|
24
|
-
{
|
|
25
|
-
"name": "Site slug",
|
|
26
|
-
"token": "__SITE_SLUG__",
|
|
27
|
-
"deriveFrom": "slug",
|
|
28
|
-
"required": true
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"name": "Site URL",
|
|
32
|
-
"token": "__SITE_URL__",
|
|
33
|
-
"deriveFrom": "siteUrl",
|
|
34
|
-
"default": "https://example.com",
|
|
35
|
-
"required": true
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"name": "Contact email",
|
|
39
|
-
"token": "__CONTACT_EMAIL__",
|
|
40
|
-
"deriveFrom": "contactEmail",
|
|
41
|
-
"default": "hello@example.com",
|
|
42
|
-
"required": true
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"name": "Repository URL",
|
|
46
|
-
"token": "__REPOSITORY_URL__",
|
|
47
|
-
"deriveFrom": "repositoryUrl",
|
|
48
|
-
"default": "https://github.com/example/site"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"name": "Discord URL",
|
|
52
|
-
"token": "__DISCORD_URL__",
|
|
53
|
-
"deriveFrom": "discordUrl",
|
|
54
|
-
"default": "https://discord.gg/example"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"name": "CLI version",
|
|
58
|
-
"token": "__CLI_VERSION__",
|
|
59
|
-
"deriveFrom": "cliVersion",
|
|
60
|
-
"required": true
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"name": "Core version",
|
|
64
|
-
"token": "__CORE_VERSION__",
|
|
65
|
-
"deriveFrom": "coreVersion",
|
|
66
|
-
"required": true
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"name": "Agent version",
|
|
70
|
-
"token": "__AGENT_VERSION__",
|
|
71
|
-
"deriveFrom": "agentVersion",
|
|
72
|
-
"required": true
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"name": "SDK version",
|
|
76
|
-
"token": "__SDK_VERSION__",
|
|
77
|
-
"deriveFrom": "sdkVersion",
|
|
78
|
-
"required": true
|
|
79
|
-
}
|
|
80
|
-
],
|
|
81
|
-
"managedSurface": {
|
|
82
|
-
"coreManaged": [
|
|
83
|
-
"package.json",
|
|
84
|
-
"astro.config.ts",
|
|
85
|
-
"tsconfig.json",
|
|
86
|
-
"treeseed.site.yaml",
|
|
87
|
-
"src/api/server.js",
|
|
88
|
-
"src/content.config.ts",
|
|
89
|
-
"src/config.yaml",
|
|
90
|
-
"src/manifest.yaml",
|
|
91
|
-
"src/env.yaml"
|
|
92
|
-
],
|
|
93
|
-
"validatedOnly": [
|
|
94
|
-
"treeseed.site.yaml",
|
|
95
|
-
"src/config.yaml",
|
|
96
|
-
"src/manifest.yaml",
|
|
97
|
-
"src/env.yaml"
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
|
-
"testing": {
|
|
101
|
-
"buildCommand": "npm run build"
|
|
102
|
-
}
|
|
103
|
-
}
|