editmamei 0.0.1-placeholder → 0.17.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.
Files changed (97) hide show
  1. package/LICENSE +29 -0
  2. package/NOTICES.md +97 -0
  3. package/README.md +1391 -0
  4. package/dist/api/brush-tool-names.js +19 -0
  5. package/dist/api/custom-script.js +113 -0
  6. package/dist/api/extendscript/_helpers.js +296 -0
  7. package/dist/api/photoshop-api.js +144 -0
  8. package/dist/api/snippet-client.js +79 -0
  9. package/dist/bin/editmamei-core-darwin-arm64 +0 -0
  10. package/dist/bin/editmamei-core-darwin-x64 +0 -0
  11. package/dist/bin/editmamei-core-win-x64.exe +0 -0
  12. package/dist/cli/activate.js +40 -0
  13. package/dist/cli/clients/claude-code.js +109 -0
  14. package/dist/cli/clients/claude-desktop.js +121 -0
  15. package/dist/cli/clients/cursor.js +145 -0
  16. package/dist/cli/clients/json-config.js +65 -0
  17. package/dist/cli/clients/shell.js +69 -0
  18. package/dist/cli/clients/types.js +1 -0
  19. package/dist/cli/config.js +104 -0
  20. package/dist/cli/deactivate.js +19 -0
  21. package/dist/cli/downloads-dir.js +15 -0
  22. package/dist/cli/help.js +46 -0
  23. package/dist/cli/install.js +150 -0
  24. package/dist/cli/license.js +33 -0
  25. package/dist/cli/paths.js +23 -0
  26. package/dist/cli/router.js +97 -0
  27. package/dist/cli/status.js +48 -0
  28. package/dist/cli/uninstall.js +69 -0
  29. package/dist/core/server.js +297 -0
  30. package/dist/core/session.js +60 -0
  31. package/dist/core/settings.js +91 -0
  32. package/dist/core/tool-registry.js +69 -0
  33. package/dist/core/tool-tiers.js +121 -0
  34. package/dist/delivery/bundle.js +74 -0
  35. package/dist/delivery/client.js +121 -0
  36. package/dist/delivery/config.js +5 -0
  37. package/dist/delivery/crypto.js +43 -0
  38. package/dist/delivery/provision.js +111 -0
  39. package/dist/delivery/signing.js +35 -0
  40. package/dist/delivery/store.js +73 -0
  41. package/dist/edition.js +1 -0
  42. package/dist/index.js +79 -0
  43. package/dist/kernel/host-api.js +1 -0
  44. package/dist/kernel/kernel.js +82 -0
  45. package/dist/license/config.js +13 -0
  46. package/dist/license/device-hash.js +19 -0
  47. package/dist/license/entitlement.js +91 -0
  48. package/dist/license/env-activation.js +20 -0
  49. package/dist/license/polar-client.js +62 -0
  50. package/dist/license/store.js +52 -0
  51. package/dist/modules/ce/index.js +51 -0
  52. package/dist/platform/connection.js +85 -0
  53. package/dist/platform/detector.js +32 -0
  54. package/dist/platform/macos-detector.js +137 -0
  55. package/dist/platform/macos-executor.js +147 -0
  56. package/dist/platform/run-child.js +111 -0
  57. package/dist/platform/script-executor.js +1 -0
  58. package/dist/platform/windows-detector.js +155 -0
  59. package/dist/platform/windows-executor.js +155 -0
  60. package/dist/skills/editmamei-skill.zip +0 -0
  61. package/dist/telemetry/client.js +216 -0
  62. package/dist/telemetry/events.js +76 -0
  63. package/dist/telemetry/outbox.js +132 -0
  64. package/dist/telemetry/sanitize.js +45 -0
  65. package/dist/telemetry/transport.js +25 -0
  66. package/dist/tools/adjustment-tools.js +952 -0
  67. package/dist/tools/brush-tools.js +239 -0
  68. package/dist/tools/document-tools.js +495 -0
  69. package/dist/tools/filter-tools.js +837 -0
  70. package/dist/tools/group-tools.js +453 -0
  71. package/dist/tools/history-tools.js +186 -0
  72. package/dist/tools/image-placement-tools.js +103 -0
  73. package/dist/tools/image-tools.js +163 -0
  74. package/dist/tools/layer-ordering-tools.js +98 -0
  75. package/dist/tools/layer-properties-tools.js +749 -0
  76. package/dist/tools/layer-tools.js +398 -0
  77. package/dist/tools/layer-transform-tools.js +319 -0
  78. package/dist/tools/metadata-tools.js +194 -0
  79. package/dist/tools/overview-tools.js +186 -0
  80. package/dist/tools/preview-tools.js +1137 -0
  81. package/dist/tools/retouch-tools.js +365 -0
  82. package/dist/tools/selection-tools.js +927 -0
  83. package/dist/tools/text-tools.js +269 -0
  84. package/dist/utils/blend-modes.js +30 -0
  85. package/dist/utils/exif-reader.js +301 -0
  86. package/dist/utils/jsx.js +16 -0
  87. package/dist/utils/logger.js +90 -0
  88. package/dist/utils/run-script.js +6 -0
  89. package/dist/utils/session-log-reader.js +38 -0
  90. package/dist/utils/session-log.js +272 -0
  91. package/dist/utils/source-metadata.js +145 -0
  92. package/dist/utils/temp.js +107 -0
  93. package/dist/utils/template-storage.js +214 -0
  94. package/dist/utils/validate.js +111 -0
  95. package/dist/version.js +1 -0
  96. package/package.json +37 -10
  97. package/index.js +0 -0
package/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ Copyright (c) 2026 EMBD Artifacts LLC. All rights reserved.
2
+
3
+ This software and its source code are proprietary and confidential. No license,
4
+ right, or interest in the software is granted except as expressly set forth in
5
+ a separate written agreement signed by the copyright holder.
6
+
7
+ Unauthorized copying, distribution, modification, public display, public
8
+ performance, reverse engineering, or creation of derivative works of this
9
+ software, in whole or in part, is strictly prohibited.
10
+
11
+ This product includes software originally developed by third parties under
12
+ permissive open-source licenses. The terms of those licenses continue to apply
13
+ to the corresponding portions of the software. Required attribution and
14
+ license information is reproduced in the accompanying NOTICES.md file; the
15
+ full license texts ship with each individual dependency through the npm
16
+ package manager (see node_modules/<package>/LICENSE after install). In the
17
+ event of any conflict between the terms of this license and any third-party
18
+ license that applies to a specific portion of the software, the third-party
19
+ license governs that portion only.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY,
25
+ WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF,
26
+ OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ For commercial licensing inquiries, contact: support@editmamei.com
package/NOTICES.md ADDED
@@ -0,0 +1,97 @@
1
+ # Third-Party Notices
2
+
3
+ Editmamei includes software developed by third parties. Their
4
+ respective copyright notices and license terms are reproduced below as
5
+ required by their licenses.
6
+
7
+ ---
8
+
9
+ ## Open-Source Dependencies (resolved via npm)
10
+
11
+ Editmamei's shipped tarball contains the compiled `dist/` output plus this
12
+ notice file, the LICENSE, and the README. Runtime dependencies are NOT
13
+ bundled into the tarball — they are resolved from npm at install time and
14
+ land under the consumer's `node_modules/`. The full license text and any
15
+ `NOTICE` file for each dependency travels with that dependency's published
16
+ package.
17
+
18
+ To enumerate the dependency set and inspect each license, run from the
19
+ project root after `npm install`:
20
+
21
+ ```
22
+ npx license-checker --production --summary
23
+ ```
24
+
25
+ To extract the full license texts (e.g. for downstream redistribution or
26
+ internal review):
27
+
28
+ ```
29
+ npx license-checker --production --out THIRD_PARTY_LICENSES.txt
30
+ ```
31
+
32
+ ### License Summary
33
+
34
+ At v0.8.x the runtime dependency closure resolves under MIT, Apache-2.0,
35
+ ISC, BSD-2-Clause, BSD-3-Clause, Python-2.0, BlueOak-1.0.0, and 0BSD —
36
+ all permissive and compatible with redistribution.
37
+
38
+ ### Apache-2.0 NOTICE Files
39
+
40
+ For any Apache-2.0-licensed dependency that includes a `NOTICE` file, that
41
+ file is shipped inside the dependency's own npm package. Section 4(d) of
42
+ Apache 2.0 requires redistributors to preserve those NOTICE contents; because
43
+ Editmamei does not bundle the dependencies into its own tarball, the
44
+ preservation requirement is satisfied by the dependency's own published
45
+ artifact rather than by inlining the text here.
46
+
47
+ ---
48
+
49
+ ## Trademarks
50
+
51
+ "Adobe" and "Photoshop" are registered trademarks of Adobe Inc. This product
52
+ is not affiliated with, endorsed by, or sponsored by Adobe Inc. References to
53
+ Adobe products are made solely for the purpose of identifying compatibility
54
+ and interoperability.
55
+
56
+ All other trademarks are the property of their respective owners.
57
+
58
+ ---
59
+
60
+ ## Initial Architecture Acknowledgment
61
+
62
+ Editmamei's initial project scaffolding — the MCP stdio server pattern, the
63
+ Windows/macOS platform-executor split, and several tool-category file layouts
64
+ — was derived from **photoshop-mcp** by Ali Sait Teke
65
+ (https://github.com/alisaitteke/photoshop-mcp), distributed under the MIT
66
+ License. Editmamei has since been substantially rewritten and extended: the
67
+ ExtendScript wrapper contract, the tool surface (~80 tools across 17
68
+ categories), the test suite, the templates and telemetry systems, the
69
+ Community/Pro edition build pipeline, and the broader distribution
70
+ architecture are original to this project.
71
+
72
+ The original MIT license terms are reproduced below and continue to apply to
73
+ those portions of the software derived from the upstream project.
74
+
75
+ ```
76
+ MIT License
77
+
78
+ Copyright (c) 2026 Ali Sait Teke
79
+
80
+ Permission is hereby granted, free of charge, to any person obtaining a copy
81
+ of this software and associated documentation files (the "Software"), to deal
82
+ in the Software without restriction, including without limitation the rights
83
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
84
+ copies of the Software, and to permit persons to whom the Software is
85
+ furnished to do so, subject to the following conditions:
86
+
87
+ The above copyright notice and this permission notice shall be included in
88
+ all copies or substantial portions of the Software.
89
+
90
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
91
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
92
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
93
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
94
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
95
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
96
+ THE SOFTWARE.
97
+ ```