@pixelbyte-software/pixcode 1.38.5 → 1.39.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 (52) hide show
  1. package/CODE_OF_CONDUCT.md +41 -0
  2. package/CONTRIBUTING.md +156 -0
  3. package/README.md +223 -92
  4. package/SECURITY.md +46 -0
  5. package/dist/assets/{index-DHC6THrb.js → index-B4DKVLz5.js} +158 -158
  6. package/dist/assets/index-DoOHFfYP.css +32 -0
  7. package/dist/docs.html +17 -3
  8. package/dist/features.html +28 -7
  9. package/dist/index.html +2 -2
  10. package/dist/landing.html +162 -109
  11. package/dist/llms-full.txt +9 -3
  12. package/dist/llms.txt +3 -2
  13. package/dist/site.css +158 -2
  14. package/dist/sitemap.xml +8 -8
  15. package/dist-server/server/gemini-cli.js +9 -1
  16. package/dist-server/server/gemini-cli.js.map +1 -1
  17. package/dist-server/server/modules/orchestration/a2a/routes.js +16 -14
  18. package/dist-server/server/modules/orchestration/a2a/routes.js.map +1 -1
  19. package/dist-server/server/modules/orchestration/workspace/docker-workspace.js +2 -1
  20. package/dist-server/server/modules/orchestration/workspace/docker-workspace.js.map +1 -1
  21. package/dist-server/server/modules/orchestration/workspace/workspace-manager.js +4 -0
  22. package/dist-server/server/modules/orchestration/workspace/workspace-manager.js.map +1 -1
  23. package/dist-server/server/modules/orchestration/workspace/worktree-workspace.js +2 -1
  24. package/dist-server/server/modules/orchestration/workspace/worktree-workspace.js.map +1 -1
  25. package/dist-server/server/opencode-cli.js +9 -1
  26. package/dist-server/server/opencode-cli.js.map +1 -1
  27. package/dist-server/server/qwen-code-cli.js +9 -1
  28. package/dist-server/server/qwen-code-cli.js.map +1 -1
  29. package/dist-server/server/routes/git.js +7 -1
  30. package/dist-server/server/routes/git.js.map +1 -1
  31. package/dist-server/server/routes/taskmaster.js +74 -11
  32. package/dist-server/server/routes/taskmaster.js.map +1 -1
  33. package/dist-server/server/services/taskmaster-config.js +128 -0
  34. package/dist-server/server/services/taskmaster-config.js.map +1 -0
  35. package/package.json +7 -2
  36. package/scripts/smoke/changes-panel-layout.mjs +48 -0
  37. package/scripts/smoke/chat-composer-fixed-layout.mjs +45 -0
  38. package/scripts/smoke/command-center-agent-writes.mjs +27 -1
  39. package/scripts/smoke/orchestration-mobile-scroll.mjs +29 -0
  40. package/scripts/smoke/orchestration-runtime-guards.mjs +48 -0
  41. package/scripts/smoke/taskmaster-config.mjs +59 -0
  42. package/server/gemini-cli.js +9 -1
  43. package/server/modules/orchestration/a2a/routes.ts +16 -14
  44. package/server/modules/orchestration/workspace/docker-workspace.ts +2 -1
  45. package/server/modules/orchestration/workspace/workspace-manager.ts +5 -0
  46. package/server/modules/orchestration/workspace/worktree-workspace.ts +2 -1
  47. package/server/opencode-cli.js +9 -1
  48. package/server/qwen-code-cli.js +9 -1
  49. package/server/routes/git.js +7 -1
  50. package/server/routes/taskmaster.js +83 -11
  51. package/server/services/taskmaster-config.js +146 -0
  52. package/dist/assets/index-B-OgjpDF.css +0 -32
@@ -0,0 +1,41 @@
1
+ # Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ Pixcode is an open-source project for developers who want a practical,
6
+ self-hosted workspace for AI coding agents. We want discussion, issues, reviews,
7
+ and contributions to stay useful, respectful, and focused on improving the
8
+ project.
9
+
10
+ ## Expected Behavior
11
+
12
+ - Be respectful when discussing bugs, design choices, and tradeoffs.
13
+ - Assume good intent, but be concrete when something is wrong.
14
+ - Keep issues actionable: include reproduction steps, logs, screenshots, or
15
+ environment details when possible.
16
+ - Respect maintainers' time by keeping pull requests scoped.
17
+ - Avoid sharing private tokens, project paths, customer data, or provider
18
+ credentials in public threads.
19
+
20
+ ## Unacceptable Behavior
21
+
22
+ - Harassment, personal attacks, slurs, threats, or targeted abuse.
23
+ - Publishing another person's private information without permission.
24
+ - Repeated off-topic comments that derail issue or pull request discussion.
25
+ - Posting secrets, malware, exploit payloads, or harmful instructions unrelated
26
+ to a responsible security report.
27
+ - Any behavior that makes the project unsafe for contributors or users.
28
+
29
+ ## Reporting
30
+
31
+ If you see conduct problems, report them through GitHub by contacting the
32
+ repository maintainers or opening a private security/advisory channel when the
33
+ problem includes sensitive information.
34
+
35
+ Maintainers may remove comments, close issues, block users, or take other
36
+ reasonable actions to keep the project healthy.
37
+
38
+ ## Scope
39
+
40
+ This code of conduct applies to the Pixcode repository, issue tracker, pull
41
+ requests, discussions, release threads, and other project-managed spaces.
@@ -0,0 +1,156 @@
1
+ # Contributing to Pixcode
2
+
3
+ Thanks for your interest in contributing to Pixcode! Before you start, please take a moment to read through this guide.
4
+
5
+ ## Before You Start
6
+
7
+ - **Search first.** Check [existing issues](https://github.com/alicomert/pixcode/issues) and [pull requests](https://github.com/alicomert/pixcode/pulls) to avoid duplicating work.
8
+ - **Discuss first** for new features. Open an [issue](https://github.com/alicomert/pixcode/issues/new) to discuss your idea before investing time in implementation. We may already have plans or opinions on how it should work.
9
+ - **Bug fixes are always welcome.** If you spot a bug, feel free to open a PR directly.
10
+
11
+ ## Prerequisites
12
+
13
+ - [Node.js](https://nodejs.org/) 22 or later
14
+ - [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code) installed and configured
15
+
16
+ ## Getting Started
17
+
18
+ 1. Fork the repository
19
+ 2. Clone your fork:
20
+ ```bash
21
+ git clone https://github.com/<your-username>/pixcode.git
22
+ cd pixcode
23
+ ```
24
+ 3. Install dependencies:
25
+ ```bash
26
+ npm install
27
+ ```
28
+ 4. Start the development server:
29
+ ```bash
30
+ npm run dev
31
+ ```
32
+ 5. Create a branch for your changes:
33
+ ```bash
34
+ git checkout -b feat/your-feature-name
35
+ ```
36
+
37
+ ## Project Structure
38
+
39
+ ```
40
+ pixcode/
41
+ ├── src/ # React frontend (Vite + Tailwind)
42
+ │ ├── components/ # UI components
43
+ │ ├── contexts/ # React context providers
44
+ │ ├── hooks/ # Custom React hooks
45
+ │ ├── i18n/ # Internationalization and translations
46
+ │ ├── lib/ # Shared frontend libraries
47
+ │ ├── types/ # TypeScript type definitions
48
+ │ └── utils/ # Frontend utilities
49
+ ├── server/ # Express backend
50
+ │ ├── routes/ # API route handlers
51
+ │ ├── middleware/ # Express middleware
52
+ │ ├── database/ # SQLite database layer
53
+ │ └── tools/ # CLI tool integrations
54
+ ├── shared/ # Code shared between client and server
55
+ └── public/ # Static assets, icons, PWA manifest
56
+ ```
57
+
58
+ ## Development Workflow
59
+
60
+ - `npm run dev` — Start both the frontend and backend in development mode
61
+ - `npm run build` — Create a production build
62
+ - `npm run server` — Start only the backend server
63
+ - `npm run client` — Start only the Vite dev server
64
+
65
+ ## Making Changes
66
+
67
+ ### Bug Fixes
68
+
69
+ - Reference the issue number in your PR if one exists
70
+ - Describe how to reproduce the bug in your PR description
71
+ - Add a screenshot or recording for visual bugs
72
+
73
+ ### New Features
74
+
75
+ - Keep the scope focused — one feature per PR
76
+ - Include screenshots or recordings for UI changes
77
+
78
+ ### Documentation
79
+
80
+ - Documentation improvements are always welcome
81
+ - Keep language clear and concise
82
+
83
+ ## Commit Convention
84
+
85
+ We follow [Conventional Commits](https://conventionalcommits.org/) to generate release notes automatically. Every commit message should follow this format:
86
+
87
+ ```
88
+ <type>(optional scope): <description>
89
+ ```
90
+
91
+ Use imperative, present tense: "add feature" not "added feature" or "adds feature".
92
+
93
+ ### Types
94
+
95
+ | Type | Description |
96
+ |------|-------------|
97
+ | `feat` | A new feature |
98
+ | `fix` | A bug fix |
99
+ | `perf` | A performance improvement |
100
+ | `refactor` | Code change that neither fixes a bug nor adds a feature |
101
+ | `docs` | Documentation only |
102
+ | `style` | CSS, formatting, visual changes |
103
+ | `chore` | Maintenance, dependencies, config |
104
+ | `ci` | CI/CD pipeline changes |
105
+ | `test` | Adding or updating tests |
106
+ | `build` | Build system changes |
107
+
108
+ ### Examples
109
+
110
+ ```bash
111
+ feat: add conversation search
112
+ feat(i18n): add Japanese language support
113
+ fix: redirect unauthenticated users to login
114
+ fix(editor): syntax highlighting for .env files
115
+ perf: lazy load code editor component
116
+ refactor(chat): extract message list component
117
+ docs: update API configuration guide
118
+ ```
119
+
120
+ ### Breaking Changes
121
+
122
+ Add `!` after the type or include `BREAKING CHANGE:` in the commit footer:
123
+
124
+ ```bash
125
+ feat!: redesign settings page layout
126
+ ```
127
+
128
+ ## Pull Requests
129
+
130
+ - Give your PR a clear, descriptive title following the commit convention above
131
+ - Fill in the PR description with what changed and why
132
+ - Link any related issues
133
+ - Include screenshots for UI changes
134
+ - Make sure the build passes (`npm run build`)
135
+ - Keep PRs focused — avoid unrelated changes
136
+
137
+ ## Releases
138
+
139
+ Releases are managed by maintainers using [release-it](https://github.com/release-it/release-it) with the [conventional changelog plugin](https://github.com/release-it/conventional-changelog).
140
+
141
+ ```bash
142
+ npm run release # interactive (prompts for version bump)
143
+ npm run release -- patch # patch release
144
+ npm run release -- minor # minor release
145
+ ```
146
+
147
+ This automatically:
148
+ - Bumps the version based on commit types (`feat` = minor, `fix` = patch)
149
+ - Generates categorized release notes
150
+ - Updates `CHANGELOG.md`
151
+ - Creates a git tag and GitHub Release
152
+ - Publishes to npm
153
+
154
+ ## License
155
+
156
+ By contributing, you agree that your contributions will be licensed under the [AGPL-3.0-or-later License](LICENSE), including the additional terms specified in Section 7 of the LICENSE file.