cistack 6.1.0 → 6.2.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/package.json +1 -1
- package/product-site/.github/workflows/pipeline.yml +14 -1
- package/product-site/components/CopyButton.tsx +54 -38
- package/product-site/components/HomeClient.tsx +490 -811
- package/product-site/components/InstallToggle.tsx +70 -34
- package/product-site/components/TerminalCard.tsx +9 -5
- package/product-site/components/TerminalCardMotion.tsx +21 -14
- package/product-site/components/site-motion.tsx +229 -0
- package/product-site/dictionaries/br.json +246 -107
- package/product-site/dictionaries/cn.json +246 -107
- package/product-site/dictionaries/de.json +237 -98
- package/product-site/dictionaries/en.json +228 -91
- package/product-site/dictionaries/es.json +240 -146
- package/product-site/dictionaries/fr.json +237 -143
- package/product-site/dictionaries/pt.json +246 -107
- package/product-site/package.json +1 -0
- package/product-site/scripts/validate-i18n.mjs +45 -0
- package/src/index.js +12 -13
|
@@ -1,107 +1,244 @@
|
|
|
1
1
|
{
|
|
2
|
+
"copy_button": {
|
|
3
|
+
"idle": "Copy",
|
|
4
|
+
"success": "Copied"
|
|
5
|
+
},
|
|
2
6
|
"navigation": {
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"docs": "Docs"
|
|
7
|
+
"repository": "GitHub",
|
|
8
|
+
"registry": "npm",
|
|
9
|
+
"reference": "Reference",
|
|
10
|
+
"version": "Version",
|
|
11
|
+
"status": "Stable"
|
|
9
12
|
},
|
|
10
13
|
"hero": {
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"s2_label": "S_02 // PIPELINE_SYNTH",
|
|
15
|
-
"s2_title": "YOUR PIPELINE",
|
|
16
|
-
"s3_label": "S_03 // ACTION_COMMIT",
|
|
17
|
-
"s3_title": "ORCHESTRATED",
|
|
18
|
-
"description": "cistack deep-scans your repository to generate production-ready GitHub Actions workflows across 30+ frameworks and 12+ platforms.",
|
|
14
|
+
"product_name": "cistack",
|
|
15
|
+
"tagline": "Generate GitHub Actions CI/CD pipelines by analyzing the codebase you already have.",
|
|
16
|
+
"intro": "cistack scans your project, detects the stack, and writes production-ready GitHub Actions workflows for CI, deployment, Docker, and releases. It is designed for real repos, not toy demos: it reads lock files, framework signals, release config, monorepo workspaces, hosting config, and Git branch metadata before generating YAML.",
|
|
19
17
|
"npx_command": "npx cistack",
|
|
20
|
-
"
|
|
21
|
-
"per_week": "
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"
|
|
18
|
+
"weekly_downloads": "Weekly downloads",
|
|
19
|
+
"per_week": "last week on npm",
|
|
20
|
+
"live_registry": "Live from registry"
|
|
21
|
+
},
|
|
22
|
+
"preview": {
|
|
23
|
+
"title": "Run preview",
|
|
24
|
+
"caption": "Animated CLI output after scanning a typical project."
|
|
25
|
+
},
|
|
26
|
+
"why": {
|
|
27
|
+
"title": "Why cistack",
|
|
28
|
+
"items": [
|
|
29
|
+
"Detects languages, frameworks, testing tools, hosting providers, and release tooling automatically",
|
|
30
|
+
"Uses your repository's default Git branch when available instead of assuming main",
|
|
31
|
+
"Supports monorepos, per-package workflows, and package-manager-aware commands",
|
|
32
|
+
"Generates ecosystem-aware Dependabot config, including Bun when bun.lock is present",
|
|
33
|
+
"Smart-merges generated workflows with existing files instead of blindly overwriting them",
|
|
34
|
+
"Generates deploy pipelines for Vercel, Netlify, Firebase, GitHub Pages, AWS, Azure, Heroku, Render, and Railway",
|
|
35
|
+
"Ships with built-in workflow audit and upgrade commands",
|
|
36
|
+
"Includes typed cistack.config.js support through index.d.ts",
|
|
37
|
+
"Backed by an automated regression suite covering branch handling, release detection, smart merge behavior, monorepo package scripts, and CLI smoke tests"
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"install": {
|
|
41
|
+
"title": "Installation",
|
|
42
|
+
"quick_command": "Quick install",
|
|
43
|
+
"node_note": "cistack supports Node.js 16+, and the project itself is continuously verified on Node.js 18, 20, and 22 in GitHub Actions."
|
|
44
|
+
},
|
|
45
|
+
"cli": {
|
|
46
|
+
"section_title": "CLI usage",
|
|
47
|
+
"items": [
|
|
48
|
+
{
|
|
49
|
+
"title": "Generate workflows",
|
|
50
|
+
"paragraphs": [
|
|
51
|
+
"generate is the default command, so both npx cistack and npx cistack generate work.",
|
|
52
|
+
"Common options:"
|
|
53
|
+
],
|
|
54
|
+
"snippets": [
|
|
55
|
+
"npx cistack",
|
|
56
|
+
"npx cistack generate",
|
|
57
|
+
"npx cistack generate --path /path/to/project",
|
|
58
|
+
"npx cistack generate --dry-run",
|
|
59
|
+
"npx cistack generate --explain",
|
|
60
|
+
"npx cistack generate --output .github/workflows",
|
|
61
|
+
"npx cistack generate --no-prompt"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"title": "Audit existing workflows",
|
|
66
|
+
"paragraphs": [
|
|
67
|
+
"Checks your generated workflow directory for issues like missing concurrency blocks, outdated actions, old Node versions, and missing dependency caching. If you set outputDir in cistack.config.js, audit and upgrade use that directory too."
|
|
68
|
+
],
|
|
69
|
+
"snippets": ["npx cistack audit"]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"title": "Upgrade workflow actions",
|
|
73
|
+
"paragraphs": [
|
|
74
|
+
"Updates known GitHub Actions to their latest supported stable versions."
|
|
75
|
+
],
|
|
76
|
+
"snippets": ["npx cistack upgrade", "npx cistack upgrade --dry-run"]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"title": "Create a starter config",
|
|
80
|
+
"paragraphs": ["Writes cistack.config.js with the supported override keys."],
|
|
81
|
+
"snippets": ["npx cistack init"]
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
"generated": {
|
|
86
|
+
"section_title": "What gets generated",
|
|
87
|
+
"items": [
|
|
88
|
+
{
|
|
89
|
+
"title": "pipeline.yml",
|
|
90
|
+
"paragraphs": [
|
|
91
|
+
"By default, cistack generates a single GitHub Actions workflow that combines CI, deploy, Docker, and release jobs into one place so teams can track the whole pipeline from one file.",
|
|
92
|
+
"It includes lint, test, build, E2E, deploy, Docker, and release jobs when those parts of the stack are detected, uses the detected default branch or your configured branches, keeps preview deploys and release jobs in the same workflow file, and documents required secrets in the file header."
|
|
93
|
+
],
|
|
94
|
+
"snippets": []
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"title": "dependabot.yml",
|
|
98
|
+
"paragraphs": [
|
|
99
|
+
"Dependabot remains a separate file in .github/dependabot.yml, because it is not a GitHub Actions workflow.",
|
|
100
|
+
"If you want preview deployments on Dependabot pull requests, add deployment credentials as Dependabot secrets too, not only Actions secrets. For Vercel, that means VERCEL_TOKEN, VERCEL_ORG_ID, and VERCEL_PROJECT_ID."
|
|
101
|
+
],
|
|
102
|
+
"snippets": []
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"title": "Split mode",
|
|
106
|
+
"paragraphs": [
|
|
107
|
+
"If you prefer the old multi-file layout, set workflowLayout to split in cistack.config.js. In split mode, cistack writes separate ci.yml, deploy.yml, docker.yml, and release.yml files again."
|
|
108
|
+
],
|
|
109
|
+
"snippets": [
|
|
110
|
+
"module.exports = {\n workflowLayout: 'split',\n};"
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"detection": {
|
|
116
|
+
"section_title": "Supported detection",
|
|
117
|
+
"hosting_title": "Hosting",
|
|
118
|
+
"hosting_tags": [
|
|
119
|
+
"Firebase",
|
|
120
|
+
"Vercel",
|
|
121
|
+
"Netlify",
|
|
122
|
+
"GitHub Pages",
|
|
123
|
+
"AWS",
|
|
124
|
+
"GCP App Engine",
|
|
125
|
+
"Azure",
|
|
126
|
+
"Heroku",
|
|
127
|
+
"Render",
|
|
128
|
+
"Railway",
|
|
129
|
+
"Docker"
|
|
130
|
+
],
|
|
131
|
+
"frameworks_title": "Frameworks",
|
|
132
|
+
"frameworks_tags": [
|
|
133
|
+
"Next.js",
|
|
134
|
+
"Nuxt",
|
|
135
|
+
"SvelteKit",
|
|
136
|
+
"Remix",
|
|
137
|
+
"Astro",
|
|
138
|
+
"Vite",
|
|
139
|
+
"React",
|
|
140
|
+
"Vue",
|
|
141
|
+
"Angular",
|
|
142
|
+
"Svelte",
|
|
143
|
+
"Gatsby",
|
|
144
|
+
"Express",
|
|
145
|
+
"Fastify",
|
|
146
|
+
"NestJS",
|
|
147
|
+
"Hono",
|
|
148
|
+
"Koa",
|
|
149
|
+
"Django",
|
|
150
|
+
"Flask",
|
|
151
|
+
"FastAPI",
|
|
152
|
+
"Rails",
|
|
153
|
+
"Spring Boot",
|
|
154
|
+
"Laravel",
|
|
155
|
+
"Go",
|
|
156
|
+
"Rust"
|
|
157
|
+
],
|
|
158
|
+
"testing_title": "Testing tools",
|
|
159
|
+
"testing_tags": [
|
|
160
|
+
"Jest",
|
|
161
|
+
"Vitest",
|
|
162
|
+
"Mocha",
|
|
163
|
+
"Cypress",
|
|
164
|
+
"Playwright",
|
|
165
|
+
"Pytest",
|
|
166
|
+
"RSpec",
|
|
167
|
+
"Go test",
|
|
168
|
+
"Cargo test",
|
|
169
|
+
"PHPUnit",
|
|
170
|
+
"Maven / JUnit",
|
|
171
|
+
"Storybook"
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
"configuration": {
|
|
175
|
+
"section_title": "Configuration",
|
|
176
|
+
"intro": "Create cistack.config.js when you want to override detection.",
|
|
177
|
+
"example_caption": "Example",
|
|
178
|
+
"keys_title": "Supported top-level config keys",
|
|
179
|
+
"keys": [
|
|
180
|
+
"nodeVersion",
|
|
181
|
+
"packageManager",
|
|
182
|
+
"hosting",
|
|
183
|
+
"frameworks",
|
|
184
|
+
"testing",
|
|
185
|
+
"branches",
|
|
186
|
+
"workflowLayout",
|
|
187
|
+
"cache",
|
|
188
|
+
"monorepo",
|
|
189
|
+
"release",
|
|
190
|
+
"secrets",
|
|
191
|
+
"outputDir"
|
|
192
|
+
],
|
|
193
|
+
"branches_title": "Branch behavior",
|
|
194
|
+
"branches": [
|
|
195
|
+
"If branches is set in config, cistack uses it exactly",
|
|
196
|
+
"Otherwise it reads the repository's default branch from Git metadata when available",
|
|
197
|
+
"If Git metadata is unavailable, it falls back to safe defaults like main, master, and develop depending on the workflow type"
|
|
198
|
+
],
|
|
199
|
+
"config_snippet": "/** @type {import('cistack').Config} */\nmodule.exports = {\n nodeVersion: '20',\n packageManager: 'pnpm',\n branches: ['main', 'staging'],\n workflowLayout: 'single',\n hosting: ['Vercel'],\n outputDir: '.github/workflows',\n cache: {\n npm: true,\n cargo: true,\n pip: true,\n },\n monorepo: {\n perPackage: true,\n },\n release: {\n tool: 'semantic-release',\n },\n};"
|
|
200
|
+
},
|
|
201
|
+
"secrets": {
|
|
202
|
+
"section_title": "Secrets",
|
|
203
|
+
"body": "Generated deploy and release workflows document the secrets they need at the top of each file. Add them in GitHub under Settings, Secrets and variables, Actions."
|
|
26
204
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"section2_title": "Installation",
|
|
50
|
-
"command_registry": "COMMAND_REGISTRY",
|
|
51
|
-
"commands": {
|
|
52
|
-
"audit": "Check workflows for outdated actions",
|
|
53
|
-
"upgrade": "Bump all actions to latest versions",
|
|
54
|
-
"init": "Create override config file"
|
|
55
|
-
},
|
|
56
|
-
"recommended_npx": "Recommended: Use npx for one-off generation.",
|
|
57
|
-
"parameters_manifest": "PARAMETERS_MANIFEST",
|
|
58
|
-
"flags": {
|
|
59
|
-
"explain": "Show reasoning for detected stack",
|
|
60
|
-
"path": "Target directory scanning path",
|
|
61
|
-
"output": "Redefine workflow output dir",
|
|
62
|
-
"dry_run": "Simulate output without writing",
|
|
63
|
-
"no_prompt": "Bypass interactive safety checks",
|
|
64
|
-
"verbose": "Enable maximum stdout tracing",
|
|
65
|
-
"force": "Ignore existing files and overwrite"
|
|
66
|
-
},
|
|
67
|
-
"detection_logic_title": "Detection Logic",
|
|
68
|
-
"detection_logic_desc": "Automatic recognition triggers based on filesystem signals.",
|
|
69
|
-
"signal_source": "Signal source:",
|
|
70
|
-
"framework_coverage": "Framework coverage",
|
|
71
|
-
"testing_tools": "Testing tools",
|
|
72
|
-
"section3_num": "03. Artifacts",
|
|
73
|
-
"section3_title": "Generated Workflows",
|
|
74
|
-
"workflows": {
|
|
75
|
-
"ci": { "label": "Continuous Integration", "desc": "Runs on push/PR: Lint (ESLint, TS type-check), Test (Node versions matrix), Build (production), and E2E." },
|
|
76
|
-
"deploy": { "label": "Continuous Deployment", "desc": "Triggers on main: Platform deployment with automatic PR Preview environments for Vercel and Netlify." },
|
|
77
|
-
"docker": { "label": "Docker Build & Push", "desc": "Triggers on main/tags: Multi-platform build via Docker Buildx, GHCR push, and GitHub Actions caching." },
|
|
78
|
-
"security": { "label": "Security Audit", "desc": "Runs on push/PR/weekly schedules: Dependency analysis and deep CodeQL auditing for the detected language." }
|
|
79
|
-
},
|
|
80
|
-
"security_requirement": "Security Requirement",
|
|
81
|
-
"encrypted_secrets": "Encrypted Secrets",
|
|
82
|
-
"add_secrets_at": "Add secrets at:",
|
|
83
|
-
"section4_num": "04. Structural Examples",
|
|
84
|
-
"section4_title": "Standard Stack Scenarios",
|
|
85
|
-
"validated_output": "Validated Output"
|
|
205
|
+
"quality": {
|
|
206
|
+
"section_title": "Development and quality",
|
|
207
|
+
"intro": "The project includes a regression suite for the areas that were historically the easiest to break:",
|
|
208
|
+
"items": [
|
|
209
|
+
"config override handling",
|
|
210
|
+
"default branch detection",
|
|
211
|
+
"deploy branch selection",
|
|
212
|
+
"Netlify production branch handling",
|
|
213
|
+
"smart merge behavior",
|
|
214
|
+
"monorepo per-package build script lookup",
|
|
215
|
+
"release config detection",
|
|
216
|
+
"release workflow generation",
|
|
217
|
+
"CLI dry-run smoke testing"
|
|
218
|
+
],
|
|
219
|
+
"commands_title": "Run checks locally",
|
|
220
|
+
"commands": [
|
|
221
|
+
"npm test",
|
|
222
|
+
"npm run test:smoke",
|
|
223
|
+
"node bin/ciflow.js audit --path .",
|
|
224
|
+
"node bin/ciflow.js upgrade --path . --dry-run"
|
|
225
|
+
],
|
|
226
|
+
"repo_note": "If you are using the published package, the executable is cistack. In the cistack repository, the local entrypoint is bin/ciflow.js."
|
|
86
227
|
},
|
|
87
228
|
"footer": {
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"open_source": "Open Source",
|
|
94
|
-
"footer_desc": "Automated CI/CD infrastructure generation for the modern web. Built with precision for developers who value visibility and security in their deployment pipelines.",
|
|
95
|
-
"global_install": "Global_Install",
|
|
96
|
-
"copyright": "CISTACK ENGINE — ALL PIPELINES REIFIED."
|
|
229
|
+
"license": "MIT License",
|
|
230
|
+
"tagline": "CI/CD workflow generation from the repo you already have.",
|
|
231
|
+
"architect_credit": "Created by",
|
|
232
|
+
"architect_name": "Edwin Vakayil",
|
|
233
|
+
"copyright_suffix": "cistack. All rights reserved where applicable."
|
|
97
234
|
},
|
|
98
235
|
"install_toggle": {
|
|
99
236
|
"recommended": "recommended",
|
|
100
237
|
"npm_global": "npm install -g",
|
|
101
238
|
"recommended_badge": "Recommended",
|
|
102
239
|
"global_badge": "Global",
|
|
103
|
-
"npx_desc": "Always fetches the latest version. No install
|
|
104
|
-
"npm_desc": "Best
|
|
240
|
+
"npx_desc": "Always fetches the latest version. No global install.",
|
|
241
|
+
"npm_desc": "Best when you use cistack across many repositories."
|
|
105
242
|
},
|
|
106
243
|
"terminal": {
|
|
107
244
|
"label": "TERMINAL",
|
|
@@ -132,6 +269,6 @@
|
|
|
132
269
|
"done_msg": "Done! Your GitHub Actions pipeline is ready.",
|
|
133
270
|
"workflows_path": "Workflows → cistack/.github/workflows",
|
|
134
271
|
"dependabot_path": "Dependabot → cistack/.github/dependabot.yml",
|
|
135
|
-
"processing": "Processing
|
|
272
|
+
"processing": "Processing output…"
|
|
136
273
|
}
|
|
137
274
|
}
|