@openclawcity/become 0.1.0 → 1.0.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/README.md +190 -98
- package/dist/cli.cjs +1550 -63
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.d.cts +8 -0
- package/dist/cli.d.ts +8 -0
- package/dist/cli.js +1536 -65
- package/dist/cli.js.map +1 -1
- package/dist/dashboard.d.cts +1 -1
- package/dist/dashboard.d.ts +1 -1
- package/dist/index.cjs +1132 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +394 -3
- package/dist/index.d.ts +394 -3
- package/dist/index.js +1122 -2
- package/dist/index.js.map +1 -1
- package/dist/{types-DzOc15AL.d.cts → types-BnbaKMTo.d.cts} +1 -1
- package/dist/{types-DzOc15AL.d.ts → types-BnbaKMTo.d.ts} +1 -1
- package/package.json +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { q as LearningEventType, r as LearningSource, s as NormEvidence, t as ReputationTier, u as ScoreEvidence } from './types-
|
|
1
|
+
import { S as StorageAdapter, a as Skill, D as DreyfusStage, b as SkillInput, C as CatalogEntry, c as Score, d as SkillTrend, R as ReflectionInput, e as Reflection, A as AgentContext, O as Observation, M as MilestoneConfig, f as Milestone, g as CelebrationTier, B as BloomsLevel, h as ScoreInput, P as PeerReview, L as LearningEdge, i as ResponseScore, j as CulturalNorm, N as NormCategory, k as ConversationTurn, l as ReviewAssignment, m as ReviewVerdict, n as ReputationLevel, o as AwarenessScore, G as GrowthSnapshot, p as GrowthDiff } from './types-BnbaKMTo.js';
|
|
2
|
+
export { q as LearningEventType, r as LearningSource, s as NormEvidence, t as ReputationTier, u as ScoreEvidence } from './types-BnbaKMTo.js';
|
|
3
|
+
import * as node_http from 'node:http';
|
|
4
|
+
import { IncomingMessage, ServerResponse } from 'node:http';
|
|
3
5
|
|
|
4
6
|
declare class SkillStore {
|
|
5
7
|
private adapter;
|
|
@@ -251,6 +253,89 @@ declare function parseSkillFile(content: string): SkillInput | null;
|
|
|
251
253
|
*/
|
|
252
254
|
declare function importSkillDirectory(dir: string, _depth?: number): SkillInput[];
|
|
253
255
|
|
|
256
|
+
/**
|
|
257
|
+
* A conversation exchange between two agents.
|
|
258
|
+
*/
|
|
259
|
+
interface AgentExchange {
|
|
260
|
+
agent_a: string;
|
|
261
|
+
agent_b: string;
|
|
262
|
+
messages: {
|
|
263
|
+
from: string;
|
|
264
|
+
text: string;
|
|
265
|
+
}[];
|
|
266
|
+
context?: string;
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* A skill/instruction extracted from an agent conversation.
|
|
270
|
+
* This gets injected into the agent's context on future turns.
|
|
271
|
+
*/
|
|
272
|
+
interface LearnedInstruction {
|
|
273
|
+
id: string;
|
|
274
|
+
agent_id: string;
|
|
275
|
+
skill: string;
|
|
276
|
+
instruction: string;
|
|
277
|
+
learned_from: string;
|
|
278
|
+
source_context: string;
|
|
279
|
+
confidence: number;
|
|
280
|
+
created_at: string;
|
|
281
|
+
}
|
|
282
|
+
/** LLM adapter for analyzing conversations */
|
|
283
|
+
interface ConversationAnalyzer {
|
|
284
|
+
analyze(prompt: string): Promise<string>;
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* The core learning engine.
|
|
288
|
+
*
|
|
289
|
+
* Intercepts conversations between agents, extracts concrete lessons,
|
|
290
|
+
* and produces instructions that get injected into the agent's context.
|
|
291
|
+
*
|
|
292
|
+
* This is what actually makes agents learn from each other.
|
|
293
|
+
*/
|
|
294
|
+
declare class AgentLearningEngine {
|
|
295
|
+
private store;
|
|
296
|
+
private analyzer;
|
|
297
|
+
constructor(store: StorageAdapter, analyzer: ConversationAnalyzer);
|
|
298
|
+
/**
|
|
299
|
+
* Analyze a conversation between two agents and extract lessons for both.
|
|
300
|
+
*/
|
|
301
|
+
learnFromConversation(exchange: AgentExchange): Promise<{
|
|
302
|
+
agent_a_learned: LearnedInstruction[];
|
|
303
|
+
agent_b_learned: LearnedInstruction[];
|
|
304
|
+
}>;
|
|
305
|
+
/**
|
|
306
|
+
* Analyze a peer review and extract lessons for the reviewee.
|
|
307
|
+
*/
|
|
308
|
+
learnFromPeerReview(review: {
|
|
309
|
+
reviewer: string;
|
|
310
|
+
reviewee: string;
|
|
311
|
+
assessment: string;
|
|
312
|
+
strengths: string[];
|
|
313
|
+
weaknesses: string[];
|
|
314
|
+
suggestions: string[];
|
|
315
|
+
skill?: string;
|
|
316
|
+
}): Promise<LearnedInstruction[]>;
|
|
317
|
+
/**
|
|
318
|
+
* Get the learning context for an agent — the text block that should be
|
|
319
|
+
* injected into the agent's system prompt or conversation context.
|
|
320
|
+
*
|
|
321
|
+
* THIS is what actually makes the agent smarter.
|
|
322
|
+
*/
|
|
323
|
+
getContext(agentId: string, opts?: {
|
|
324
|
+
maxInstructions?: number;
|
|
325
|
+
}): Promise<string>;
|
|
326
|
+
/**
|
|
327
|
+
* Get raw learned instructions for an agent, deduplicated by instruction text.
|
|
328
|
+
*/
|
|
329
|
+
getInstructions(agentId: string, limit?: number): Promise<LearnedInstruction[]>;
|
|
330
|
+
/**
|
|
331
|
+
* Get skills this agent has learned from others (distinct skill names).
|
|
332
|
+
*/
|
|
333
|
+
getLearnedSkills(agentId: string): Promise<string[]>;
|
|
334
|
+
private parseAndSave;
|
|
335
|
+
private parseInstructions;
|
|
336
|
+
private saveInstruction;
|
|
337
|
+
}
|
|
338
|
+
|
|
254
339
|
declare class PeerReviewProtocol {
|
|
255
340
|
private adapter;
|
|
256
341
|
constructor(adapter: StorageAdapter);
|
|
@@ -657,6 +742,312 @@ declare class TrainScheduler {
|
|
|
657
742
|
private check;
|
|
658
743
|
}
|
|
659
744
|
|
|
745
|
+
interface SkillFile {
|
|
746
|
+
id: string;
|
|
747
|
+
name: string;
|
|
748
|
+
instruction: string;
|
|
749
|
+
learned_from: string;
|
|
750
|
+
source: string;
|
|
751
|
+
confidence: number;
|
|
752
|
+
approved_at?: string;
|
|
753
|
+
created_at: string;
|
|
754
|
+
}
|
|
755
|
+
interface SkillStoreConfig {
|
|
756
|
+
baseDir: string;
|
|
757
|
+
}
|
|
758
|
+
declare class FileSkillStore {
|
|
759
|
+
private skillsDir;
|
|
760
|
+
private pendingDir;
|
|
761
|
+
private rejectedDir;
|
|
762
|
+
constructor(config: SkillStoreConfig);
|
|
763
|
+
listApproved(): SkillFile[];
|
|
764
|
+
listPending(): SkillFile[];
|
|
765
|
+
listRejected(): SkillFile[];
|
|
766
|
+
getApproved(id: string): SkillFile | null;
|
|
767
|
+
savePending(lesson: Omit<SkillFile, 'id' | 'approved_at'>): SkillFile | null;
|
|
768
|
+
approve(id: string): boolean;
|
|
769
|
+
reject(id: string): boolean;
|
|
770
|
+
disable(id: string): boolean;
|
|
771
|
+
remove(id: string): boolean;
|
|
772
|
+
/**
|
|
773
|
+
* Validate that an id does not contain path traversal characters.
|
|
774
|
+
* Prevents attacks like id="../../.ssh/authorized_keys"
|
|
775
|
+
*/
|
|
776
|
+
private validateId;
|
|
777
|
+
private readDir;
|
|
778
|
+
private readFile;
|
|
779
|
+
private writeFile;
|
|
780
|
+
private parseSkillFile;
|
|
781
|
+
private formatSkillFile;
|
|
782
|
+
private generateId;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
type TrustLevel = 'trusted' | 'pending' | 'blocked';
|
|
786
|
+
interface TrustConfig {
|
|
787
|
+
trusted: string[];
|
|
788
|
+
blocked: string[];
|
|
789
|
+
default: TrustLevel;
|
|
790
|
+
}
|
|
791
|
+
interface RateLimits {
|
|
792
|
+
max_lessons_per_day: number;
|
|
793
|
+
max_lessons_per_agent: number;
|
|
794
|
+
max_skills_per_call: number;
|
|
795
|
+
}
|
|
796
|
+
declare class TrustManager {
|
|
797
|
+
private trustPath;
|
|
798
|
+
private statsPath;
|
|
799
|
+
private config;
|
|
800
|
+
private dailyCounts;
|
|
801
|
+
constructor(baseDir: string);
|
|
802
|
+
getLevel(agentId: string): TrustLevel;
|
|
803
|
+
setLevel(agentId: string, level: TrustLevel): void;
|
|
804
|
+
setDefault(level: TrustLevel): void;
|
|
805
|
+
getConfig(): TrustConfig;
|
|
806
|
+
canLearn(agentId: string, limits?: RateLimits): boolean;
|
|
807
|
+
recordLesson(agentId: string): void;
|
|
808
|
+
getDailyCounts(): {
|
|
809
|
+
total: number;
|
|
810
|
+
perAgent: Record<string, number>;
|
|
811
|
+
};
|
|
812
|
+
private loadTrust;
|
|
813
|
+
private saveTrust;
|
|
814
|
+
private loadDailyCounts;
|
|
815
|
+
private saveDailyCounts;
|
|
816
|
+
private refreshDailyCountsIfNewDay;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
interface ProxyConfig {
|
|
820
|
+
port: number;
|
|
821
|
+
llm_base_url: string;
|
|
822
|
+
llm_api_key: string;
|
|
823
|
+
llm_provider: 'anthropic' | 'openai' | 'ollama' | 'openrouter' | 'custom';
|
|
824
|
+
baseDir: string;
|
|
825
|
+
max_skills_per_call: number;
|
|
826
|
+
auto_extract: boolean;
|
|
827
|
+
}
|
|
828
|
+
interface ProxyStats {
|
|
829
|
+
requests_forwarded: number;
|
|
830
|
+
skills_injected: number;
|
|
831
|
+
lessons_extracted: number;
|
|
832
|
+
started_at: string;
|
|
833
|
+
}
|
|
834
|
+
declare function createProxyServer(config: ProxyConfig, analyzer?: ConversationAnalyzer): {
|
|
835
|
+
server: node_http.Server<typeof IncomingMessage, typeof ServerResponse>;
|
|
836
|
+
stats: ProxyStats;
|
|
837
|
+
store: FileSkillStore;
|
|
838
|
+
trust: TrustManager;
|
|
839
|
+
listen: (port?: number) => Promise<void>;
|
|
840
|
+
close: () => Promise<void>;
|
|
841
|
+
};
|
|
842
|
+
|
|
843
|
+
/**
|
|
844
|
+
* Detects whether a conversation involves another agent (vs user-to-agent).
|
|
845
|
+
* Only agent-to-agent conversations trigger lesson extraction.
|
|
846
|
+
*/
|
|
847
|
+
interface DetectionResult {
|
|
848
|
+
isAgentToAgent: boolean;
|
|
849
|
+
otherAgentId?: string;
|
|
850
|
+
exchangeType?: 'channel' | 'dm' | 'peer_review' | 'collaboration' | 'chat';
|
|
851
|
+
}
|
|
852
|
+
declare function detectAgentConversation(messages: {
|
|
853
|
+
role: string;
|
|
854
|
+
content: string;
|
|
855
|
+
name?: string;
|
|
856
|
+
}[]): DetectionResult;
|
|
857
|
+
/**
|
|
858
|
+
* Extract agent-to-agent exchange text from messages for analysis.
|
|
859
|
+
*/
|
|
860
|
+
declare function extractExchangeText(messages: {
|
|
861
|
+
role: string;
|
|
862
|
+
content: string;
|
|
863
|
+
name?: string;
|
|
864
|
+
}[]): string;
|
|
865
|
+
|
|
866
|
+
/**
|
|
867
|
+
* Async lesson extractor. After the proxy forwards a response, this analyzes
|
|
868
|
+
* the conversation for agent-to-agent lessons. Runs in the background —
|
|
869
|
+
* never blocks the agent's response.
|
|
870
|
+
*/
|
|
871
|
+
declare class LessonExtractor {
|
|
872
|
+
private store;
|
|
873
|
+
private trust;
|
|
874
|
+
private analyzer;
|
|
875
|
+
constructor(store: FileSkillStore, trust: TrustManager, analyzer: ConversationAnalyzer);
|
|
876
|
+
/**
|
|
877
|
+
* Analyze a conversation and extract lessons. Fire-and-forget.
|
|
878
|
+
*/
|
|
879
|
+
extract(messages: {
|
|
880
|
+
role: string;
|
|
881
|
+
content: string;
|
|
882
|
+
name?: string;
|
|
883
|
+
}[]): Promise<void>;
|
|
884
|
+
private parseLessons;
|
|
885
|
+
}
|
|
886
|
+
|
|
887
|
+
/**
|
|
888
|
+
* Format approved skills as a text block for injection into the system message.
|
|
889
|
+
*/
|
|
890
|
+
declare function formatSkillsForInjection(skills: SkillFile[]): string;
|
|
891
|
+
/**
|
|
892
|
+
* Inject skill text into a messages array by prepending to the system message.
|
|
893
|
+
* Mutates the messages array in place.
|
|
894
|
+
*/
|
|
895
|
+
declare function injectSkillsIntoMessages(messages: {
|
|
896
|
+
role: string;
|
|
897
|
+
content: string;
|
|
898
|
+
}[], skillText: string): void;
|
|
899
|
+
|
|
900
|
+
interface OBCHeartbeatData {
|
|
901
|
+
your_skills?: {
|
|
902
|
+
skill: string;
|
|
903
|
+
score: number;
|
|
904
|
+
stage: string;
|
|
905
|
+
trend: string | null;
|
|
906
|
+
}[];
|
|
907
|
+
your_artifact_reactions?: {
|
|
908
|
+
artifact_id: string;
|
|
909
|
+
reactor_name: string;
|
|
910
|
+
reaction_type: string;
|
|
911
|
+
comment?: string;
|
|
912
|
+
is_human?: boolean;
|
|
913
|
+
}[];
|
|
914
|
+
owner_messages?: {
|
|
915
|
+
id: string;
|
|
916
|
+
message: string;
|
|
917
|
+
created_at: string;
|
|
918
|
+
}[];
|
|
919
|
+
needs_attention?: {
|
|
920
|
+
type: string;
|
|
921
|
+
[key: string]: unknown;
|
|
922
|
+
}[];
|
|
923
|
+
active_quests?: {
|
|
924
|
+
title: string;
|
|
925
|
+
type: string;
|
|
926
|
+
}[];
|
|
927
|
+
your_completed_quests?: {
|
|
928
|
+
quest_id: string;
|
|
929
|
+
}[];
|
|
930
|
+
reputation_level?: string;
|
|
931
|
+
personality_hint?: string;
|
|
932
|
+
occupants?: {
|
|
933
|
+
bot_id: string;
|
|
934
|
+
display_name: string;
|
|
935
|
+
current_action?: string;
|
|
936
|
+
}[];
|
|
937
|
+
}
|
|
938
|
+
interface OBCArtifact {
|
|
939
|
+
type: string;
|
|
940
|
+
skill_used?: string;
|
|
941
|
+
title?: string;
|
|
942
|
+
}
|
|
943
|
+
interface OBCPeerReview {
|
|
944
|
+
reviewer_id: string;
|
|
945
|
+
submission_id: string;
|
|
946
|
+
skill?: string;
|
|
947
|
+
verdict: ReviewVerdict;
|
|
948
|
+
assessment: string;
|
|
949
|
+
strengths: string[];
|
|
950
|
+
weaknesses: string[];
|
|
951
|
+
suggestions: string[];
|
|
952
|
+
}
|
|
953
|
+
interface OBCPeerReviewGiven {
|
|
954
|
+
submission_agent_id: string;
|
|
955
|
+
submission_id: string;
|
|
956
|
+
skill?: string;
|
|
957
|
+
verdict: ReviewVerdict;
|
|
958
|
+
assessment: string;
|
|
959
|
+
strengths: string[];
|
|
960
|
+
weaknesses: string[];
|
|
961
|
+
suggestions: string[];
|
|
962
|
+
}
|
|
963
|
+
interface OBCProposalCompleted {
|
|
964
|
+
partner_id: string;
|
|
965
|
+
artifact_id?: string;
|
|
966
|
+
skill?: string;
|
|
967
|
+
proposal_type: string;
|
|
968
|
+
}
|
|
969
|
+
interface HeartbeatLearning {
|
|
970
|
+
signals: string[];
|
|
971
|
+
observations: Observation[];
|
|
972
|
+
skills_synced: number;
|
|
973
|
+
reactions_processed: number;
|
|
974
|
+
}
|
|
975
|
+
interface OBCBridgeConfig {
|
|
976
|
+
store: StorageAdapter;
|
|
977
|
+
agentId: string;
|
|
978
|
+
}
|
|
979
|
+
interface SkillEvidence {
|
|
980
|
+
artifact_count: number;
|
|
981
|
+
artifact_types: Set<string>;
|
|
982
|
+
reactions: number[];
|
|
983
|
+
collab_count: number;
|
|
984
|
+
peer_reviews_received: number;
|
|
985
|
+
peer_reviews_given: number;
|
|
986
|
+
teaching_events: number;
|
|
987
|
+
}
|
|
988
|
+
/**
|
|
989
|
+
* Bridge between OpenClawCity and become's learning engine.
|
|
990
|
+
*
|
|
991
|
+
* Translates city events into learning signals. Every heartbeat,
|
|
992
|
+
* every collaboration, every peer review becomes measurable growth.
|
|
993
|
+
*/
|
|
994
|
+
declare class OBCBridge {
|
|
995
|
+
readonly become: Become;
|
|
996
|
+
readonly peerReview: PeerReviewProtocol;
|
|
997
|
+
readonly teaching: TeachingProtocol;
|
|
998
|
+
readonly graph: LearningGraph;
|
|
999
|
+
readonly conversation: ConversationLearner;
|
|
1000
|
+
readonly growth: GrowthTracker;
|
|
1001
|
+
readonly trends: TrendTracker;
|
|
1002
|
+
readonly awareness: AwarenessIndex;
|
|
1003
|
+
readonly agentId: string;
|
|
1004
|
+
private store;
|
|
1005
|
+
private skillEvidence;
|
|
1006
|
+
private knownSkills;
|
|
1007
|
+
private totalArtifacts;
|
|
1008
|
+
private allArtifactTypes;
|
|
1009
|
+
private followerCount;
|
|
1010
|
+
private collabsStarted;
|
|
1011
|
+
private collabsCompleted;
|
|
1012
|
+
private totalQuestCompletions;
|
|
1013
|
+
constructor(config: OBCBridgeConfig);
|
|
1014
|
+
onHeartbeat(heartbeat: OBCHeartbeatData): Promise<HeartbeatLearning>;
|
|
1015
|
+
onArtifactCreated(artifact: OBCArtifact): Promise<Score | null>;
|
|
1016
|
+
onCollaborationCompleted(data: OBCProposalCompleted): Promise<void>;
|
|
1017
|
+
/** Track that a collaboration was proposed (started but not yet completed) */
|
|
1018
|
+
onCollaborationStarted(): void;
|
|
1019
|
+
onQuestCompleted(questId: string, skill?: string): Promise<void>;
|
|
1020
|
+
onReflection(skill: string, text: string): Promise<void>;
|
|
1021
|
+
onSkillsRegistered(skills: string[]): Promise<void>;
|
|
1022
|
+
/** Record that an artifact received reactions (call with per-artifact data) */
|
|
1023
|
+
onArtifactReaction(skill: string, reactionCount: number): void;
|
|
1024
|
+
onPeerReviewReceived(review: OBCPeerReview): Promise<void>;
|
|
1025
|
+
onPeerReviewGiven(review: OBCPeerReviewGiven): Promise<void>;
|
|
1026
|
+
onTaughtBy(teacherId: string, skill: string): Promise<void>;
|
|
1027
|
+
onTeaching(studentId: string, skill: string): Promise<void>;
|
|
1028
|
+
onNewFollower(): void;
|
|
1029
|
+
/** Compute scores for all known skills with per-skill evidence */
|
|
1030
|
+
computeScores(): Promise<Score[]>;
|
|
1031
|
+
snapshot(): Promise<GrowthSnapshot>;
|
|
1032
|
+
analyzeTrends(): Promise<TrendAnalysis[]>;
|
|
1033
|
+
learningNetwork(): Promise<{
|
|
1034
|
+
mentors: MentorSummary[];
|
|
1035
|
+
students: MentorSummary[];
|
|
1036
|
+
}>;
|
|
1037
|
+
/** Get per-skill evidence (for debugging/inspection) */
|
|
1038
|
+
getSkillEvidence(skill: string): SkillEvidence;
|
|
1039
|
+
/** Get global stats */
|
|
1040
|
+
getStats(): {
|
|
1041
|
+
total_artifacts: number;
|
|
1042
|
+
follower_count: number;
|
|
1043
|
+
collabs_started: number;
|
|
1044
|
+
collabs_completed: number;
|
|
1045
|
+
quest_completions: number;
|
|
1046
|
+
skills_count: number;
|
|
1047
|
+
};
|
|
1048
|
+
getSkills(): string[];
|
|
1049
|
+
}
|
|
1050
|
+
|
|
660
1051
|
declare class Become {
|
|
661
1052
|
readonly skills: SkillStore;
|
|
662
1053
|
readonly scorer: typeof Scorer;
|
|
@@ -667,4 +1058,4 @@ declare class Become {
|
|
|
667
1058
|
});
|
|
668
1059
|
}
|
|
669
1060
|
|
|
670
|
-
export { type AdoptionMetrics, type AgentActivity, AgentContext, AnthropicAdapter, type AnthropicConfig, AwarenessIndex, type AwarenessInput, AwarenessScore, BLOOMS_ORDER, BLOOMS_SCORE, Become, BloomsLevel, CatalogEntry, CelebrationTier, ConversationLearner, type ConversationSession, ConversationTurn, CulturalNorm, DREYFUS_THRESHOLDS, type DatasetFormat, DreyfusStage, type EvolveLLM, type GeneratedSkill, GrowthDiff, GrowthSnapshot, GrowthTracker, type LLMAdapter, type LLMJudge, type LLMOptions, LearningEdge, LearningGraph, type LearningSignal, MemoryStore, type MentorSummary, Milestone, MilestoneConfig, MilestoneDetector, NormCategory, NormDetector, type NormLLM, Observation, OllamaAdapter, type OllamaConfig, OpenAIAdapter, type OpenAIConfig, PeerReview, PeerReviewProtocol, type PopulationStats, Reflection, ReflectionInput, Reflector, ReputationLevel, ResponseScore, ReviewAssignment, ReviewVerdict, SQLiteStore, type SQLiteStoreOptions, type SchedulerConfig, type SchedulerStatus, Score, ScoreInput, type ScoredTurn, type SessionLearning, Skill, SkillEvolver, SkillInput, SkillPruner, SkillStore, SkillTrend, StorageAdapter, type StudentCandidate, type TeacherCandidate, type TeachingContext, TeachingProtocol, type TrainConfig, TrainScheduler, type TrainingResult, type TrendAnalysis, TrendTracker, WEIGHTS, checkGate, computeFullScore, computeScore, datasetStats, detectBloomsLevel, detectCollaborationGap, detectCollectiveMemory, detectCreativeMismatch, detectCulturalOutlier, detectIdleCreative, detectProlificCollaborator, detectQuestStreak, detectReactionDisparity, detectSoloCreator, detectSymbolicVocabulary, dreyfusStage, filterHighQuality, getReputationLevel, importSkillDirectory, nextMilestone, normalizeCategory, parseSkillFile, scoreTrend, toTrainingDataset, trainLoRA, validateAgentId };
|
|
1061
|
+
export { type AdoptionMetrics, type AgentActivity, AgentContext, type AgentExchange, AgentLearningEngine, AnthropicAdapter, type AnthropicConfig, AwarenessIndex, type AwarenessInput, AwarenessScore, BLOOMS_ORDER, BLOOMS_SCORE, Become, BloomsLevel, CatalogEntry, CelebrationTier, type ConversationAnalyzer, ConversationLearner, type ConversationSession, ConversationTurn, CulturalNorm, DREYFUS_THRESHOLDS, type DatasetFormat, type DetectionResult, DreyfusStage, type EvolveLLM, FileSkillStore, type GeneratedSkill, GrowthDiff, GrowthSnapshot, GrowthTracker, type HeartbeatLearning, type LLMAdapter, type LLMJudge, type LLMOptions, type LearnedInstruction, LearningEdge, LearningGraph, type LearningSignal, LessonExtractor, MemoryStore, type MentorSummary, Milestone, MilestoneConfig, MilestoneDetector, NormCategory, NormDetector, type NormLLM, type OBCArtifact, OBCBridge, type OBCBridgeConfig, type OBCHeartbeatData, type OBCPeerReview, type OBCPeerReviewGiven, type OBCProposalCompleted, Observation, OllamaAdapter, type OllamaConfig, OpenAIAdapter, type OpenAIConfig, PeerReview, PeerReviewProtocol, type PopulationStats, type ProxyConfig, type ProxyStats, type RateLimits, Reflection, ReflectionInput, Reflector, ReputationLevel, ResponseScore, ReviewAssignment, ReviewVerdict, SQLiteStore, type SQLiteStoreOptions, type SchedulerConfig, type SchedulerStatus, Score, ScoreInput, type ScoredTurn, type SessionLearning, Skill, SkillEvolver, type SkillFile, SkillInput, SkillPruner, SkillStore, type SkillStoreConfig, SkillTrend, StorageAdapter, type StudentCandidate, type TeacherCandidate, type TeachingContext, TeachingProtocol, type TrainConfig, TrainScheduler, type TrainingResult, type TrendAnalysis, TrendTracker, type TrustConfig, type TrustLevel, TrustManager, WEIGHTS, checkGate, computeFullScore, computeScore, createProxyServer, datasetStats, detectAgentConversation, detectBloomsLevel, detectCollaborationGap, detectCollectiveMemory, detectCreativeMismatch, detectCulturalOutlier, detectIdleCreative, detectProlificCollaborator, detectQuestStreak, detectReactionDisparity, detectSoloCreator, detectSymbolicVocabulary, dreyfusStage, extractExchangeText, filterHighQuality, formatSkillsForInjection, getReputationLevel, importSkillDirectory, injectSkillsIntoMessages, nextMilestone, normalizeCategory, parseSkillFile, scoreTrend, toTrainingDataset, trainLoRA, validateAgentId };
|