@bvdm/delano 0.2.0 → 0.2.2
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/.delano/viewer/public/explorer.svg +2 -2
- package/.delano/viewer/public/index.html +21 -21
- package/.delano/viewer/public/markdown.svg +5 -5
- package/.delano/viewer/public/styles.css +1042 -1042
- package/.delano/viewer/public/vscode.svg +23 -23
- package/LICENSE +21 -0
- package/README.md +68 -5
- package/assets/payload/.agents/hooks/bash-worktree-fix.sh +0 -0
- package/assets/payload/.agents/hooks/post-tool-logger.js +0 -0
- package/assets/payload/.agents/hooks/session-tracker.js +0 -0
- package/assets/payload/.agents/hooks/user-prompt-logger.js +0 -0
- package/assets/payload/.agents/scripts/check-log-safety.sh +0 -0
- package/assets/payload/.agents/scripts/check-path-standards.sh +0 -0
- package/assets/payload/.agents/scripts/fix-path-standards.sh +0 -0
- package/assets/payload/.agents/scripts/git-sparse-download.sh +0 -0
- package/assets/payload/.agents/scripts/log-event.js +0 -0
- package/assets/payload/.agents/scripts/log-event.sh +0 -0
- package/assets/payload/.agents/scripts/pm/blocked.sh +0 -0
- package/assets/payload/.agents/scripts/pm/epic-list.sh +0 -0
- package/assets/payload/.agents/scripts/pm/in-progress.sh +0 -0
- package/assets/payload/.agents/scripts/pm/init.sh +0 -0
- package/assets/payload/.agents/scripts/pm/next.sh +0 -0
- package/assets/payload/.agents/scripts/pm/prd-list.sh +0 -0
- package/assets/payload/.agents/scripts/pm/search.sh +0 -0
- package/assets/payload/.agents/scripts/pm/standup.sh +0 -0
- package/assets/payload/.agents/scripts/pm/status.sh +0 -0
- package/assets/payload/.agents/scripts/pm/validate.sh +0 -0
- package/assets/payload/.agents/scripts/query-log.sh +0 -0
- package/assets/payload/.agents/scripts/test-and-log.sh +0 -0
- package/assets/payload/.delano/viewer/public/explorer.svg +2 -2
- package/assets/payload/.delano/viewer/public/index.html +21 -21
- package/assets/payload/.delano/viewer/public/markdown.svg +5 -5
- package/assets/payload/.delano/viewer/public/styles.css +1042 -1042
- package/assets/payload/.delano/viewer/public/vscode.svg +23 -23
- package/assets/payload/install-delano.sh +0 -0
- package/install-delano.sh +0 -0
- package/package.json +10 -2
- package/src/cli/commands/install.js +21 -1
- package/src/cli/lib/install.js +389 -8
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
3
3
|
<svg width="800px" height="800px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M853.333333 256H469.333333l-85.333333-85.333333H170.666667c-46.933333 0-85.333333 38.4-85.333334 85.333333v170.666667h853.333334v-85.333334c0-46.933333-38.4-85.333333-85.333334-85.333333z" fill="#FFA000" /><path d="M853.333333 256H170.666667c-46.933333 0-85.333333 38.4-85.333334 85.333333v426.666667c0 46.933333 38.4 85.333333 85.333334 85.333333h682.666666c46.933333 0 85.333333-38.4 85.333334-85.333333V341.333333c0-46.933333-38.4-85.333333-85.333334-85.333333z" fill="#FFCA28" /></svg>
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
-
<title>Delano Viewer</title>
|
|
7
|
-
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
|
|
8
|
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
-
<link
|
|
10
|
-
rel="stylesheet"
|
|
11
|
-
href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Instrument+Serif:ital@0;1&display=swap"
|
|
12
|
-
/>
|
|
13
|
-
<link rel="stylesheet" href="/styles.css" />
|
|
14
|
-
</head>
|
|
15
|
-
<body>
|
|
16
|
-
<div class="ambient" aria-hidden="true"></div>
|
|
17
|
-
<div id="app">Loading Delano viewer...</div>
|
|
18
|
-
<div id="copy-live" class="visually-hidden" aria-live="polite" aria-atomic="true"></div>
|
|
19
|
-
<script src="/app.js"></script>
|
|
20
|
-
</body>
|
|
21
|
-
</html>
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Delano Viewer</title>
|
|
7
|
+
<link rel="preconnect" href="https://fonts.googleapis.com" crossorigin />
|
|
8
|
+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
9
|
+
<link
|
|
10
|
+
rel="stylesheet"
|
|
11
|
+
href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Instrument+Serif:ital@0;1&display=swap"
|
|
12
|
+
/>
|
|
13
|
+
<link rel="stylesheet" href="/styles.css" />
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<div class="ambient" aria-hidden="true"></div>
|
|
17
|
+
<div id="app">Loading Delano viewer...</div>
|
|
18
|
+
<div id="copy-live" class="visually-hidden" aria-live="polite" aria-atomic="true"></div>
|
|
19
|
+
<script src="/app.js"></script>
|
|
20
|
+
</body>
|
|
21
|
+
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
-
<svg width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
-
<title>markdown</title>
|
|
4
|
-
<rect width="24" height="24" fill="none"/>
|
|
5
|
-
<path d="M2,16V8H4l3,3,3-3h2v8H10V10.83l-3,3-3-3V16H2M16,8h3v4h2.5l-4,4.5-4-4.5H16Z"/>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
|
2
|
+
<svg width="800px" height="800px" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<title>markdown</title>
|
|
4
|
+
<rect width="24" height="24" fill="none"/>
|
|
5
|
+
<path d="M2,16V8H4l3,3,3-3h2v8H10V10.83l-3,3-3-3V16H2M16,8h3v4h2.5l-4,4.5-4-4.5H16Z"/>
|
|
6
6
|
</svg>
|