@intelliweave/embedded 2.2.81 → 2.2.83
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/dist/component/component.d.ts +9 -0
- package/dist/component/component.js +112 -74
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +9 -0
- package/dist/node/node.js +1 -1
- package/dist/react/react.d.ts +10 -0
- package/dist/react/react.js +81 -43
- package/dist/script-tag/script-tag.js +112 -74
- package/dist/webpack/index.d.ts +15 -0
- package/dist/webpack/index.js +86 -48
- package/package.json +1 -1
- package/AGENTS.md +0 -12
package/package.json
CHANGED
package/AGENTS.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# IntelliWeave SDK
|
|
2
|
-
IntelliWeave (formerly Web Weaver) is an AI management platform and SDK that allows users to set up AI in their apps and websites. The SDK (this project) is written in
|
|
3
|
-
TypeScript and uses Web Components for the built-in UI. Users of this SDK can choose to use the built-in UI or create their own custom UI by using the `IntelliWeave` class directly.
|
|
4
|
-
|
|
5
|
-
The `WebWeaverEmbed` class is the entry point for the built-in Web Component-based UI.
|
|
6
|
-
|
|
7
|
-
## Guidelines
|
|
8
|
-
- Do not use a linter, it has not been set up yet.
|
|
9
|
-
- Run `npm test` for testing code changes. The tests only cover logic, not UI. Due to the nature of older LLMs, sometimes the tests fail when the AI decides to behave differently. If you encounter this, run the test a second time to make sure.
|
|
10
|
-
- Follow existing code styling
|
|
11
|
-
- Make sure to include comments, even if they are redundant
|
|
12
|
-
- Prefer inline code instead of small functions where possible, unless the code will be extensively reused or is complex enough to warrant abstraction
|