@copilotkit/pathfinder 1.6.0 → 1.6.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.
- package/CHANGELOG.md +8 -0
- package/LICENSE +7 -2
- package/LICENSING.md +19 -0
- package/README.md +4 -4
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @copilotkit/pathfinder
|
|
2
2
|
|
|
3
|
+
## 1.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Add Additional Use Grant to ELv2 license — explicitly permits hosting Pathfinder for your own project's documentation
|
|
8
|
+
- Add LICENSING.md with plain-English license summary
|
|
9
|
+
- Update README license section to reference Additional Use Grant and LICENSING.md
|
|
10
|
+
|
|
3
11
|
## 1.6.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/LICENSE
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
Copyright 2024-2026 CopilotKit
|
|
1
|
+
Copyright 2024-2026 CopilotKit
|
|
2
2
|
|
|
3
|
-
Licensor: CopilotKit
|
|
3
|
+
Licensor: CopilotKit
|
|
4
4
|
Licensed Work: Pathfinder
|
|
5
5
|
|
|
6
|
+
Additional Use Grant: You may host the Licensed Work as a service to provide
|
|
7
|
+
documentation retrieval for your own project's
|
|
8
|
+
documentation, provided the Licensed Work is not itself
|
|
9
|
+
sold as a standalone product or service to third parties.
|
|
10
|
+
|
|
6
11
|
Licensed under the Elastic License 2.0 (the "License"); you may not use this
|
|
7
12
|
software except in compliance with the License. You may obtain a copy of the
|
|
8
13
|
License at
|
package/LICENSING.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# Licensing
|
|
2
|
+
|
|
3
|
+
Pathfinder is licensed under the [Elastic License 2.0](https://www.elastic.co/licensing/elastic-license) with an Additional Use Grant.
|
|
4
|
+
|
|
5
|
+
## What you can do
|
|
6
|
+
|
|
7
|
+
- **Host Pathfinder for your own project's docs.** If you maintain an open-source project or product and want to run Pathfinder so your users can query your documentation, go for it. That's the intended use case.
|
|
8
|
+
- **Run Pathfinder locally** for personal or internal use.
|
|
9
|
+
- **Fork, modify, and contribute** back to the project.
|
|
10
|
+
|
|
11
|
+
## What you can't do
|
|
12
|
+
|
|
13
|
+
- **Sell Pathfinder as a product or service.** You can't take Pathfinder, wrap it up, and sell it as your own documentation retrieval offering.
|
|
14
|
+
|
|
15
|
+
## Why this license?
|
|
16
|
+
|
|
17
|
+
We want Pathfinder to be freely usable by the developer community while preventing commercial competitors from reselling our work. The Elastic License 2.0 with our Additional Use Grant achieves both.
|
|
18
|
+
|
|
19
|
+
If you have questions about whether your use case is covered, open an issue or reach out.
|
package/README.md
CHANGED
|
@@ -98,10 +98,10 @@ Step-by-step migration guide: **[Migrate from Mintlify](https://pathfinder.copil
|
|
|
98
98
|
|
|
99
99
|
## License
|
|
100
100
|
|
|
101
|
-
Pathfinder is source-available under the [Elastic License 2.0 (ELv2)](LICENSE)
|
|
101
|
+
Pathfinder is source-available under the [Elastic License 2.0 (ELv2)](LICENSE) with an **Additional Use Grant**.
|
|
102
102
|
|
|
103
|
-
**You can:** use it, modify it, self-host it,
|
|
103
|
+
**You can:** use it, modify it, self-host it, host it for your project's docs, run it for your company, contribute to it — all free.
|
|
104
104
|
|
|
105
|
-
**One restriction:** you can't
|
|
105
|
+
**One restriction:** you can't sell Pathfinder as a standalone product or service. That's it.
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
See [LICENSING.md](LICENSING.md) for plain-English details.
|
package/dist/cli.js
CHANGED
|
@@ -8,7 +8,7 @@ const program = new Command();
|
|
|
8
8
|
program
|
|
9
9
|
.name("pathfinder")
|
|
10
10
|
.description("Agentic docs retrieval for AI agents")
|
|
11
|
-
.version("1.6.
|
|
11
|
+
.version("1.6.1");
|
|
12
12
|
program
|
|
13
13
|
.command("init")
|
|
14
14
|
.description("Scaffold a new Pathfinder project in the current directory")
|
package/package.json
CHANGED