@nclamvn/vibecode-cli 1.7.0 → 1.8.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.
Files changed (67) hide show
  1. package/SESSION_NOTES.md +119 -0
  2. package/bin/vibecode.js +53 -0
  3. package/package.json +1 -1
  4. package/src/commands/ask.js +230 -0
  5. package/src/commands/docs.js +167 -0
  6. package/src/commands/git.js +103 -2
  7. package/src/commands/migrate.js +341 -0
  8. package/src/commands/refactor.js +205 -0
  9. package/src/commands/review.js +126 -1
  10. package/src/commands/security.js +229 -0
  11. package/src/commands/test.js +194 -0
  12. package/src/config/constants.js +5 -1
  13. package/src/index.js +8 -0
  14. package/docs-site/README.md +0 -41
  15. package/docs-site/blog/2019-05-28-first-blog-post.md +0 -12
  16. package/docs-site/blog/2019-05-29-long-blog-post.md +0 -44
  17. package/docs-site/blog/2021-08-01-mdx-blog-post.mdx +0 -24
  18. package/docs-site/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg +0 -0
  19. package/docs-site/blog/2021-08-26-welcome/index.md +0 -29
  20. package/docs-site/blog/authors.yml +0 -25
  21. package/docs-site/blog/tags.yml +0 -19
  22. package/docs-site/docs/commands/agent.md +0 -162
  23. package/docs-site/docs/commands/assist.md +0 -71
  24. package/docs-site/docs/commands/build.md +0 -53
  25. package/docs-site/docs/commands/config.md +0 -30
  26. package/docs-site/docs/commands/debug.md +0 -173
  27. package/docs-site/docs/commands/doctor.md +0 -34
  28. package/docs-site/docs/commands/go.md +0 -128
  29. package/docs-site/docs/commands/index.md +0 -79
  30. package/docs-site/docs/commands/init.md +0 -42
  31. package/docs-site/docs/commands/learn.md +0 -82
  32. package/docs-site/docs/commands/lock.md +0 -33
  33. package/docs-site/docs/commands/plan.md +0 -29
  34. package/docs-site/docs/commands/review.md +0 -31
  35. package/docs-site/docs/commands/snapshot.md +0 -34
  36. package/docs-site/docs/commands/start.md +0 -32
  37. package/docs-site/docs/commands/status.md +0 -37
  38. package/docs-site/docs/commands/undo.md +0 -83
  39. package/docs-site/docs/configuration.md +0 -72
  40. package/docs-site/docs/faq.md +0 -83
  41. package/docs-site/docs/getting-started.md +0 -119
  42. package/docs-site/docs/guides/agent-mode.md +0 -94
  43. package/docs-site/docs/guides/debug-mode.md +0 -83
  44. package/docs-site/docs/guides/magic-mode.md +0 -107
  45. package/docs-site/docs/installation.md +0 -98
  46. package/docs-site/docs/intro.md +0 -67
  47. package/docs-site/docusaurus.config.ts +0 -141
  48. package/docs-site/package-lock.json +0 -18039
  49. package/docs-site/package.json +0 -48
  50. package/docs-site/sidebars.ts +0 -70
  51. package/docs-site/src/components/HomepageFeatures/index.tsx +0 -72
  52. package/docs-site/src/components/HomepageFeatures/styles.module.css +0 -16
  53. package/docs-site/src/css/custom.css +0 -30
  54. package/docs-site/src/pages/index.module.css +0 -23
  55. package/docs-site/src/pages/index.tsx +0 -44
  56. package/docs-site/src/pages/markdown-page.md +0 -7
  57. package/docs-site/src/theme/Footer/index.tsx +0 -127
  58. package/docs-site/src/theme/Footer/styles.module.css +0 -285
  59. package/docs-site/static/.nojekyll +0 -0
  60. package/docs-site/static/img/docusaurus-social-card.jpg +0 -0
  61. package/docs-site/static/img/docusaurus.png +0 -0
  62. package/docs-site/static/img/favicon.ico +0 -0
  63. package/docs-site/static/img/logo.svg +0 -1
  64. package/docs-site/static/img/undraw_docusaurus_mountain.svg +0 -171
  65. package/docs-site/static/img/undraw_docusaurus_react.svg +0 -170
  66. package/docs-site/static/img/undraw_docusaurus_tree.svg +0 -40
  67. package/docs-site/tsconfig.json +0 -8
@@ -1,141 +0,0 @@
1
- import {themes as prismThemes} from 'prism-react-renderer';
2
- import type {Config} from '@docusaurus/types';
3
- import type * as Preset from '@docusaurus/preset-classic';
4
-
5
- const config: Config = {
6
- title: 'Vibecode CLI',
7
- tagline: 'Build software with discipline - AI coding with guardrails',
8
- favicon: 'img/favicon.ico',
9
-
10
- future: {
11
- v4: true,
12
- },
13
-
14
- url: 'https://vibecode.dev',
15
- baseUrl: '/',
16
-
17
- organizationName: 'nclamvn',
18
- projectName: 'vibecode-cli',
19
-
20
- onBrokenLinks: 'throw',
21
-
22
- i18n: {
23
- defaultLocale: 'en',
24
- locales: ['en', 'vi'],
25
- },
26
-
27
- presets: [
28
- [
29
- 'classic',
30
- {
31
- docs: {
32
- sidebarPath: './sidebars.ts',
33
- editUrl: 'https://github.com/nclamvn/vibecode-cli/tree/main/docs-site/',
34
- },
35
- blog: false, // Disable blog for now
36
- theme: {
37
- customCss: './src/css/custom.css',
38
- },
39
- } satisfies Preset.Options,
40
- ],
41
- ],
42
-
43
- themeConfig: {
44
- image: 'img/vibecode-social-card.png',
45
- colorMode: {
46
- defaultMode: 'dark',
47
- respectPrefersColorScheme: true,
48
- },
49
- navbar: {
50
- title: 'Vibecode',
51
- logo: {
52
- alt: 'Vibecode Logo',
53
- src: 'img/logo.svg',
54
- },
55
- items: [
56
- {
57
- type: 'docSidebar',
58
- sidebarId: 'docsSidebar',
59
- position: 'left',
60
- label: 'Docs',
61
- },
62
- {
63
- href: '/docs/commands',
64
- label: 'Commands',
65
- position: 'left',
66
- },
67
- {
68
- href: 'https://www.npmjs.com/package/@nclamvn/vibecode-cli',
69
- label: 'npm',
70
- position: 'right',
71
- },
72
- {
73
- href: 'https://github.com/nclamvn/vibecode-cli',
74
- label: 'GitHub',
75
- position: 'right',
76
- },
77
- ],
78
- },
79
- footer: {
80
- style: 'dark',
81
- links: [
82
- {
83
- title: 'Documentation',
84
- items: [
85
- {
86
- label: 'Getting Started',
87
- to: '/docs/getting-started',
88
- },
89
- {
90
- label: 'Commands',
91
- to: '/docs/commands',
92
- },
93
- {
94
- label: 'Configuration',
95
- to: '/docs/configuration',
96
- },
97
- ],
98
- },
99
- {
100
- title: 'Quick Links',
101
- items: [
102
- {
103
- label: 'Magic Mode (go)',
104
- to: '/docs/commands/go',
105
- },
106
- {
107
- label: 'Agent Mode',
108
- to: '/docs/commands/agent',
109
- },
110
- {
111
- label: 'Debug Mode',
112
- to: '/docs/commands/debug',
113
- },
114
- ],
115
- },
116
- {
117
- title: 'More',
118
- items: [
119
- {
120
- label: 'npm Package',
121
- href: 'https://www.npmjs.com/package/@nclamvn/vibecode-cli',
122
- },
123
- {
124
- label: 'GitHub',
125
- href: 'https://github.com/nclamvn/vibecode-cli',
126
- },
127
- ],
128
- },
129
- ],
130
- copyright: `Copyright © ${new Date().getFullYear()} Vibecode. Built with Docusaurus.`,
131
- },
132
- prism: {
133
- theme: prismThemes.github,
134
- darkTheme: prismThemes.dracula,
135
- additionalLanguages: ['bash', 'json'],
136
- },
137
- algolia: undefined, // Add Algolia later for search
138
- } satisfies Preset.ThemeConfig,
139
- };
140
-
141
- export default config;