Skip to content

Commit d3ac6dd

Browse files
docs: add license headers and repository information
1 parent 183e741 commit d3ac6dd

18 files changed

Lines changed: 79 additions & 3 deletions

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,3 +261,7 @@ When adding an MCP server in the configuration panel, verify that the endpoint e
261261
- **Local-Only**: The agent communicates with a local model (like Ollama or LM Studio) for a 100% private, offline-capable experience.
262262

263263
This architecture makes the project ideal for internal tools, developer-focused products, and any application where data privacy and user control are priorities.
264+
265+
## License
266+
267+
See license: https://github.com/FranBarInstance/ClientAgentJS

dist/clientagentjs.esm.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clientagentjs.esm.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clientagentjs.global.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/clientagentjs.global.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,7 @@ To test any example locally:
3333
1. Build the library: `npm run build`
3434
2. Serve the project root with a static server (e.g., `npx serve` or `python3 -m http.server`)
3535
3. Open the example path in your browser.
36+
37+
---
38+
39+
See license: https://github.com/FranBarInstance/ClientAgentJS

docs/api.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,3 +200,7 @@ Main classes available for customization:
200200
- `.caj-controls`
201201
- `.caj-error`
202202
- `.caj-feedback`
203+
204+
---
205+
206+
See license: https://github.com/FranBarInstance/ClientAgentJS

docs/architecture.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,7 @@ Responsibilities:
105105

106106
- build distributable ESM bundles from `src/`
107107
- keep examples pointed at the built runtime rather than internal source files
108+
109+
---
110+
111+
See license: https://github.com/FranBarInstance/ClientAgentJS

examples/browser-basic/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,7 @@ This example is a comprehensive "Chat Explorer" that demonstrates the majority o
4444
- **Imports**: The example imports directly from `../../dist/clientagentjs.esm.js`.
4545
- **UI Architecture**: Uses a modular vanilla JavaScript approach with CSS variables for a modern, responsive design.
4646
- **Dependencies**: Uses `marked.min.js` (via CDN) for Markdown parsing.
47+
48+
---
49+
50+
See license: https://github.com/FranBarInstance/ClientAgentJS

examples/browser-basic/main.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* ClientAgentJS Example - Chat Explorer
3+
* See license: https://github.com/FranBarInstance/ClientAgentJS
4+
*/
5+
16
import { createAgent } from "../../dist/clientagentjs.esm.js";
27

38
const AGENTS_MD_PATH = "./AGENTS.md";

0 commit comments

Comments
 (0)