sf-intelligence 0.1.5 → 0.1.10
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/LICENSE +39 -0
- package/README.md +10 -4
- package/bin/sfi.js +0 -0
- package/dist/index.js +118056 -36882
- package/package.json +19 -23
package/LICENSE
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
MIT License with Commons Clause
|
|
2
|
+
|
|
3
|
+
Copyright 2026 sf-intelligence contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
1. The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
2. COMMONS CLAUSE (Restriction on Commercial Use)
|
|
16
|
+
The licensor hereby grants you permission to use the Software for
|
|
17
|
+
non-commercial purposes only.
|
|
18
|
+
|
|
19
|
+
"Commercial use" means any use of the Software where the primary purpose is
|
|
20
|
+
to generate revenue or commercial advantage, including but not limited to:
|
|
21
|
+
|
|
22
|
+
- Offering the Software or any derivative works as a service or product
|
|
23
|
+
- Bundling the Software with a commercial offering
|
|
24
|
+
- Using the Software to create a competing intelligence platform
|
|
25
|
+
- Reselling access to the Software or its output
|
|
26
|
+
- Using the Software as part of a paid consulting engagement
|
|
27
|
+
|
|
28
|
+
If you wish to use this Software for commercial purposes, you must obtain a
|
|
29
|
+
commercial license. Contact: pranav.sfintelligence@gmail.com
|
|
30
|
+
|
|
31
|
+
3. For non-commercial use, attribution is appreciated but not required.
|
|
32
|
+
|
|
33
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
34
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
35
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
36
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
37
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
38
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
39
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ org's **real metadata**, not a guess.
|
|
|
7
7
|
for a single Salesforce org. You run one `sf project retrieve`; it builds a local
|
|
8
8
|
Markdown vault and a DuckDB dependency graph, then answers questions locally
|
|
9
9
|
through an MCP server (the `sfi.*` tools) — no network egress for vault answers.
|
|
10
|
-
An opt-in live read-only plane can answer record counts and samples.
|
|
10
|
+
An opt-in live read-only plane can answer record counts and samples. MIT + Commons Clause.
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
@@ -64,9 +64,15 @@ guessing.
|
|
|
64
64
|
|
|
65
65
|
## Documentation
|
|
66
66
|
|
|
67
|
-
Full guides,
|
|
68
|
-
**https://
|
|
67
|
+
Full guides, capabilities, the tool catalog, and configuration:
|
|
68
|
+
**https://salesforce-intelligence.pages.dev**
|
|
69
|
+
|
|
70
|
+
- [Getting started](https://salesforce-intelligence.pages.dev/getting-started.html)
|
|
71
|
+
- [Capabilities](https://salesforce-intelligence.pages.dev/capabilities.html) · [All tools](https://salesforce-intelligence.pages.dev/tools.html)
|
|
72
|
+
- [Configuration](https://salesforce-intelligence.pages.dev/configuration.html) · [FAQ](https://salesforce-intelligence.pages.dev/faq.html)
|
|
73
|
+
- [Quality & trust](https://salesforce-intelligence.pages.dev/trust.html)
|
|
69
74
|
|
|
70
75
|
## License
|
|
71
76
|
|
|
72
|
-
|
|
77
|
+
MIT + Commons Clause — see the `LICENSE` file shipped in this package, or
|
|
78
|
+
<https://salesforce-intelligence.pages.dev/licensing.html>.
|
package/bin/sfi.js
CHANGED
|
File without changes
|