merge: integrate remote and local main histories

# Conflicts:
#	.project-docs/20-architecture/module-map.md
#	.project-docs/30-worklog/current-state.md
#	.project-docs/50-evidence/evidence-index.md
#	src/pages/MyPlugins/index.tsx
#	tests/unit/pi-agent-server-process-real.test.ts
#	tests/unit/pi-managed-worker-opener.test.ts
#	tests/unit/plugin-marketplace-pages.test.tsx
This commit is contained in:
inman
2026-09-03 10:44:04 +08:00
122 changed files with 10866 additions and 436 deletions

View File

@@ -1,8 +1,12 @@
import type { CapabilityResultV1 } from './data-service';
import type { ModelToolDetailsV1 } from './model-tools';
import type { DevicePackageToolDetailsV1 } from './device-packages';
export type { CapabilityBillingReceiptV1, CapabilityResultV1 } from './data-service';
export type { ModelToolDetailsV1 } from './model-tools';
export type { DevicePackageToolDetailsV1 } from './device-packages';
export type ConversationThinkingLevel = 'off' | 'minimal' | 'low' | 'medium' | 'high';
export type ConversationThinkingLevel = 'off' | 'minimal' | 'low' | 'medium' | 'high' | 'max';
export interface ProductModelRef {
accountId: string;
@@ -220,6 +224,8 @@ export type KnownToolDetails =
| GameAssetsDetailsV1
| RuntimeContextDetailsV1
| CapabilityResultV1
| ModelToolDetailsV1
| DevicePackageToolDetailsV1
| SubagentDetailsV1;
export interface ConversationToolNode {