@opengeni/contracts 2.2.0-canary.0 → 2.5.0-canary.0
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/agent-authored-durable-text.d.ts +7 -4
- package/dist/atlassian.js +1 -1
- package/dist/{chunk-7ZZ3R27P.js → chunk-4I7DWNRR.js} +585 -37
- package/dist/chunk-4I7DWNRR.js.map +1 -0
- package/dist/company-profile.d.ts +3 -3
- package/dist/connection-authority.js +1 -1
- package/dist/google-drive.js +1 -1
- package/dist/index.d.ts +318 -12
- package/dist/index.js +83 -3
- package/dist/knowledge.d.ts +5 -0
- package/dist/organization-membership-lifecycle.d.ts +493 -14
- package/dist/personal-github.js +1 -1
- package/dist/remember.d.ts +7 -4
- package/dist/session-titles.d.ts +23 -0
- package/package.json +1 -1
- package/src/agent-authored-durable-text.ts +12 -11
- package/src/company-profile.ts +3 -3
- package/src/index.ts +281 -19
- package/src/knowledge.ts +1 -0
- package/src/organization-membership-lifecycle.ts +222 -19
- package/src/remember.ts +6 -4
- package/src/session-titles.ts +324 -0
- package/dist/chunk-7ZZ3R27P.js.map +0 -1
|
@@ -15,8 +15,11 @@
|
|
|
15
15
|
* retrieved on demand behind the exact attempt's retrieval handle. Its length
|
|
16
16
|
* is therefore retrieval cost, not standing prompt cost, which is why it gets
|
|
17
17
|
* more room rather than less.
|
|
18
|
-
* -
|
|
19
|
-
*
|
|
18
|
+
* - Organization identity and mission are always-on context for root sessions
|
|
19
|
+
* across the whole organization. Historical company-profile list fields stay
|
|
20
|
+
* in the storage contract for compatibility; nonempty values on an already-
|
|
21
|
+
* active historical revision remain composed with an explicit compatibility
|
|
22
|
+
* label until an organization owner replaces the profile.
|
|
20
23
|
* - Knowledge is retrieval evidence and never joins the always-composed prefix.
|
|
21
24
|
*
|
|
22
25
|
* These caps deliberately bind only agent-authored writes. The human-facing
|
|
@@ -34,9 +37,9 @@ export declare const AGENT_AUTHORED_INSTRUCTION_POLICY_CONTENT_MAX_CHARS = 600;
|
|
|
34
37
|
export declare const AGENT_AUTHORED_PREFERENCE_CONTENT_MAX_CHARS = 1200;
|
|
35
38
|
/** `identity` and `mission`: a couple of sentences, not a positioning document. */
|
|
36
39
|
export declare const AGENT_AUTHORED_COMPANY_PROFILE_SCALAR_MAX_CHARS = 400;
|
|
37
|
-
/**
|
|
40
|
+
/** Legacy company-profile list entry bound; retained for stored-revision compatibility. */
|
|
38
41
|
export declare const AGENT_AUTHORED_COMPANY_PROFILE_ENTRY_MAX_CHARS = 200;
|
|
39
|
-
/** Whole canonical profile
|
|
42
|
+
/** Whole canonical compatibility profile; current agent tools submit only identity and mission. */
|
|
40
43
|
export declare const AGENT_AUTHORED_COMPANY_PROFILE_CONTENT_MAX_UTF8_BYTES = 4096;
|
|
41
44
|
export declare const AGENT_AUTHORED_INSTRUCTION_POLICY_CONTENT_TOO_LONG_MESSAGE: string;
|
|
42
45
|
export declare const AGENT_AUTHORED_PREFERENCE_CONTENT_TOO_LONG_MESSAGE: string;
|
package/dist/atlassian.js
CHANGED