oreshnik-cli 0.1.0-alpha

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 ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "oreshnik-cli",
3
+ "version": "0.1.0-alpha",
4
+ "description": "Git-native sprint management system — CLI-first, dashboard-optional",
5
+ "keywords": [
6
+ "sprint", "git", "project-management", "agile", "cli",
7
+ "devtools", "team", "workflow", "zone-locking", "checkpoints"
8
+ ],
9
+ "homepage": "https://github.com/Cerberux77/oreshnik#readme",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/Cerberux77/oreshnik"
13
+ },
14
+ "license": "MIT",
15
+ "type": "module",
16
+ "main": "./dist/index.js",
17
+ "bin": {
18
+ "oreshnik": "./dist/cli.js"
19
+ },
20
+ "files": [
21
+ "dist/",
22
+ "src/templates/",
23
+ "README.md",
24
+ "LICENSE",
25
+ "CHANGELOG.md"
26
+ ],
27
+ "scripts": {
28
+ "dev": "tsup --watch",
29
+ "build": "tsup",
30
+ "start": "node dist/cli.js",
31
+ "test": "vitest run",
32
+ "test:watch": "vitest",
33
+ "test:coverage": "vitest run --coverage",
34
+ "typecheck": "tsc --noEmit",
35
+ "lint": "eslint src/ tests/",
36
+ "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
37
+ "prepare": "npm run build",
38
+ "prepublishOnly": "npm run typecheck && npm run test && npm run build"
39
+ },
40
+ "dependencies": {
41
+ "chalk": "^5.3.0",
42
+ "commander": "^12.0.0",
43
+ "fs-extra": "^11.2.0",
44
+ "zod": "^3.23.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/fs-extra": "^11.0.4",
48
+ "@types/node": "^20.12.0",
49
+ "@vitest/coverage-v8": "^1.5.0",
50
+ "eslint": "^8.57.0",
51
+ "prettier": "^3.2.0",
52
+ "tsup": "^8.0.0",
53
+ "typescript": "^5.4.0",
54
+ "vitest": "^1.5.0"
55
+ },
56
+ "engines": {
57
+ "node": ">=20.0.0"
58
+ }
59
+ }
@@ -0,0 +1,29 @@
1
+ ---
2
+ type: master-dashboard
3
+ project: "{{projectName}}"
4
+ last_updated: "{{timestamp}}"
5
+ ---
6
+
7
+ # {{projectName}} — Dashboard Canonico
8
+
9
+ > Fuente operativa: `var/oreshnik/task-board.json`
10
+
11
+ ## Estado Actual
12
+
13
+ | Campo | Valor |
14
+ |---|---|
15
+ | Task board | {{taskBoardStatus}} |
16
+ | Rama madre | {{motherBranch}} |
17
+
18
+ ## Tareas
19
+
20
+ | Sprint | Estado | Owner | Scope |
21
+ |---|---|---|---|
22
+ | Ninguna | - | - | - |
23
+
24
+ ## Reglas Activas
25
+
26
+ - No credenciales en git.
27
+ - No modificar archivos en zona forbidden.
28
+ - Ejecutar `oreshnik preflight` antes de trabajar.
29
+ - Cerrar sprints con `oreshnik close`.
@@ -0,0 +1,6 @@
1
+ {
2
+ "project": "{{projectName}}",
3
+ "updatedAt": "{{timestamp}}",
4
+ "currentExecutionOrder": ["Wave 1: Sprint 01"],
5
+ "tasks": []
6
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "zones": {
3
+ "docs/**": { "owner": "shared", "lock": "shared", "sprints": ["*"] },
4
+ "var/oreshnik/**": { "owner": "shared", "lock": "shared", "sprints": ["*"] },
5
+ "src/**": { "owner": "shared", "lock": "shared", "sprints": ["*"] },
6
+ "tests/**": { "owner": "shared", "lock": "shared", "sprints": ["*"] },
7
+ "package.json": { "owner": "shared", "lock": "shared", "sprints": ["*"] },
8
+ ".env": { "owner": "none", "lock": "forbidden", "sprints": ["*"], "criticality": "critical" },
9
+ ".env.*": { "owner": "none", "lock": "forbidden", "sprints": ["*"], "criticality": "critical" },
10
+ "credentials.json": { "owner": "none", "lock": "forbidden", "sprints": ["*"], "criticality": "critical" },
11
+ "*.pem": { "owner": "none", "lock": "forbidden", "sprints": ["*"], "criticality": "critical" }
12
+ }
13
+ }