Skip to content

Commit cbb5680

Browse files
authored
Merge pull request #955 from odilitime/rename-intiface
chore: rename intiface plugin
2 parents e8dab54 + d8368d4 commit cbb5680

17 files changed

+38
-38
lines changed

agent/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@ai16z/plugin-0g": "workspace:*",
3030
"@ai16z/plugin-aptos": "workspace:*",
3131
"@ai16z/plugin-bootstrap": "workspace:*",
32-
"@ai16z/plugin-buttplug": "workspace:*",
32+
"@ai16z/plugin-intiface": "workspace:*",
3333
"@ai16z/plugin-coinbase": "workspace:*",
3434
"@ai16z/plugin-conflux": "workspace:*",
3535
"@ai16z/plugin-evm": "workspace:*",

agent/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
import { zgPlugin } from "@ai16z/plugin-0g";
2828
import createGoatPlugin from "@ai16z/plugin-goat";
2929
import { bootstrapPlugin } from "@ai16z/plugin-bootstrap";
30-
// import { buttplugPlugin } from "@ai16z/plugin-buttplug";
30+
// import { intifacePlugin } from "@ai16z/plugin-intiface";
3131
import {
3232
coinbaseCommercePlugin,
3333
coinbaseMassPaymentsPlugin,

packages/core/src/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ export type Character = {
683683
/** Optional configuration */
684684
settings?: {
685685
secrets?: { [key: string]: string };
686-
buttplug?: boolean;
686+
intiface?: boolean;
687687
voice?: {
688688
model?: string; // For VITS
689689
url?: string; // Legacy VITS support
@@ -1155,7 +1155,7 @@ export enum ServiceType {
11551155
BROWSER = "browser",
11561156
SPEECH_GENERATION = "speech_generation",
11571157
PDF = "pdf",
1158-
BUTTPLUG = "buttplug",
1158+
INTIFACE = "intiface",
11591159
AWS_S3 = "aws_s3",
11601160
}
11611161

File renamed without changes.

packages/plugin-buttplug/package.json packages/plugin-intiface/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@ai16z/plugin-buttplug",
2+
"name": "@ai16z/plugin-intiface",
33
"version": "0.1.5-alpha.5",
44
"main": "dist/index.js",
55
"type": "module",

packages/plugin-buttplug/src/environment.ts packages/plugin-intiface/src/environment.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import { IAgentRuntime } from "@ai16z/eliza";
22
import { z } from "zod";
33

4-
export const buttplugEnvSchema = z
4+
export const intifaceEnvSchema = z
55
.object({
66
INTIFACE_URL: z.string().default("ws://localhost:12345"),
7-
INTIFACE_NAME: z.string().default("Eliza Buttplug Client"),
7+
INTIFACE_NAME: z.string().default("Eliza Intiface Client"),
88
DEVICE_NAME: z.string().default("Lovense Nora"),
99
})
1010
.refine(
@@ -20,11 +20,11 @@ export const buttplugEnvSchema = z
2020
}
2121
);
2222

23-
export type ButtplugConfig = z.infer<typeof buttplugEnvSchema>;
23+
export type IntifaceConfig = z.infer<typeof intifaceEnvSchema>;
2424

25-
export async function validateButtplugConfig(
25+
export async function validateIntifaceConfig(
2626
runtime: IAgentRuntime
27-
): Promise<ButtplugConfig> {
27+
): Promise<IntifaceConfig> {
2828
try {
2929
const config = {
3030
INTIFACE_URL:
@@ -36,14 +36,14 @@ export async function validateButtplugConfig(
3636
runtime.getSetting("DEVICE_NAME") || process.env.DEVICE_NAME,
3737
};
3838

39-
return buttplugEnvSchema.parse(config);
39+
return intifaceEnvSchema.parse(config);
4040
} catch (error) {
4141
if (error instanceof z.ZodError) {
4242
const errorMessages = error.errors
4343
.map((err) => `${err.path.join(".")}: ${err.message}`)
4444
.join("\n");
4545
throw new Error(
46-
`Buttplug configuration validation failed:\n${errorMessages}`
46+
`Intiface configuration validation failed:\n${errorMessages}`
4747
);
4848
}
4949
throw error;

packages/plugin-buttplug/src/index.ts packages/plugin-intiface/src/index.ts

+24-24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ButtplugClient, ButtplugNodeWebsocketClientConnector } from "buttplug";
2-
import { validateButtplugConfig, type ButtplugConfig } from "./environment";
2+
import { validateIntifaceConfig, type IntifaceConfig } from "./environment";
33
import type {
44
Action,
55
HandlerCallback,
@@ -15,22 +15,22 @@ import {
1515
shutdownIntifaceEngine,
1616
} from "./utils";
1717

18-
export interface IButtplugService extends Service {
18+
export interface IIntifaceService extends Service {
1919
vibrate(strength: number, duration: number): Promise<void>;
2020
rotate?(strength: number, duration: number): Promise<void>;
2121
getBatteryLevel?(): Promise<number>;
2222
isConnected(): boolean;
2323
getDevices(): any[];
2424
}
2525

26-
export class ButtplugService extends Service implements IButtplugService {
27-
static serviceType: ServiceType = ServiceType.BUTTPLUG;
26+
export class IntifaceService extends Service implements IIntifaceService {
27+
static serviceType: ServiceType = ServiceType.INTIFACE;
2828
private client: ButtplugClient;
2929
private connected = false;
3030
private devices: Map<string, any> = new Map();
3131
private vibrateQueue: VibrateEvent[] = [];
3232
private isProcessingQueue = false;
33-
private config: ButtplugConfig | null = null;
33+
private config: IntifaceConfig | null = null;
3434
private maxVibrationIntensity = 1;
3535
private rampUpAndDown = false;
3636
private rampSteps = 20;
@@ -62,16 +62,16 @@ export class ButtplugService extends Service implements IButtplugService {
6262
}
6363
await shutdownIntifaceEngine();
6464
} catch (error) {
65-
console.error("[ButtplugService] Cleanup error:", error);
65+
console.error("[IntifaceService] Cleanup error:", error);
6666
}
6767
}
6868

69-
getInstance(): IButtplugService {
69+
getInstance(): IIntifaceService {
7070
return this;
7171
}
7272

7373
async initialize(runtime: IAgentRuntime): Promise<void> {
74-
this.config = await validateButtplugConfig(runtime);
74+
this.config = await validateIntifaceConfig(runtime);
7575
this.preferredDeviceName = this.config.DEVICE_NAME;
7676
this.client = new ButtplugClient(this.config.INTIFACE_NAME);
7777

@@ -118,7 +118,7 @@ export class ButtplugService extends Service implements IButtplugService {
118118
await new Promise((r) => setTimeout(r, 2000));
119119
} else {
120120
console.error(
121-
"Failed to connect to Buttplug server after all retries:",
121+
"Failed to connect to Intiface server after all retries:",
122122
error
123123
);
124124
throw error;
@@ -144,7 +144,7 @@ export class ButtplugService extends Service implements IButtplugService {
144144

145145
private async ensureDeviceAvailable() {
146146
if (!this.connected) {
147-
throw new Error("Not connected to Buttplug server");
147+
throw new Error("Not connected to Intiface server");
148148
}
149149

150150
if (this.devices.size === 0) {
@@ -325,7 +325,7 @@ const vibrateAction: Action = {
325325
description: "Control vibration intensity of connected devices",
326326
validate: async (runtime: IAgentRuntime, _message: Memory) => {
327327
try {
328-
await validateButtplugConfig(runtime);
328+
await validateIntifaceConfig(runtime);
329329
return true;
330330
} catch {
331331
return false;
@@ -338,11 +338,11 @@ const vibrateAction: Action = {
338338
options: any,
339339
callback: HandlerCallback
340340
) => {
341-
const service = runtime.getService<IButtplugService>(
342-
ServiceType.BUTTPLUG
341+
const service = runtime.getService<IIntifaceService>(
342+
ServiceType.INTIFACE
343343
);
344344
if (!service) {
345-
throw new Error("Buttplug service not available");
345+
throw new Error("Intiface service not available");
346346
}
347347

348348
// Extract intensity and duration from message
@@ -435,7 +435,7 @@ const rotateAction: Action = {
435435
description: "Control rotation intensity of connected devices",
436436
validate: async (runtime: IAgentRuntime, _message: Memory) => {
437437
try {
438-
await validateButtplugConfig(runtime);
438+
await validateIntifaceConfig(runtime);
439439
return true;
440440
} catch {
441441
return false;
@@ -448,8 +448,8 @@ const rotateAction: Action = {
448448
options: any,
449449
callback: HandlerCallback
450450
) => {
451-
const service = runtime.getService<IButtplugService>(
452-
ServiceType.BUTTPLUG
451+
const service = runtime.getService<IIntifaceService>(
452+
ServiceType.INTIFACE
453453
);
454454
if (!service || !service.rotate) {
455455
throw new Error("Rotation not supported");
@@ -493,7 +493,7 @@ const batteryAction: Action = {
493493
description: "Check battery level of connected devices",
494494
validate: async (runtime: IAgentRuntime, _message: Memory) => {
495495
try {
496-
await validateButtplugConfig(runtime);
496+
await validateIntifaceConfig(runtime);
497497
return true;
498498
} catch {
499499
return false;
@@ -506,8 +506,8 @@ const batteryAction: Action = {
506506
options: any,
507507
callback: HandlerCallback
508508
) => {
509-
const service = runtime.getService<IButtplugService>(
510-
ServiceType.BUTTPLUG
509+
const service = runtime.getService<IIntifaceService>(
510+
ServiceType.INTIFACE
511511
);
512512
if (!service || !service.getBatteryLevel) {
513513
throw new Error("Battery level check not supported");
@@ -573,13 +573,13 @@ interface VibrateEvent {
573573
deviceId?: number;
574574
}
575575

576-
export const buttplugPlugin: Plugin = {
577-
name: "buttplug",
576+
export const intifacePlugin: Plugin = {
577+
name: "intiface",
578578
description: "Controls intimate hardware devices",
579579
actions: [vibrateAction, rotateAction, batteryAction],
580580
evaluators: [],
581581
providers: [],
582-
services: [new ButtplugService()],
582+
services: [new IntifaceService()],
583583
};
584584

585-
export default buttplugPlugin;
585+
export default intifacePlugin;

packages/plugin-buttplug/src/utils.ts packages/plugin-intiface/src/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export async function isPortAvailable(port: number): Promise<boolean> {
2424
export async function startIntifaceEngine(): Promise<void> {
2525
const configPath = path.join(
2626
__dirname,
27-
"../src/buttplug-user-device-config.json"
27+
"../src/intiface-user-device-config.json"
2828
);
2929
try {
3030
const child = spawn(
@@ -34,7 +34,7 @@ export async function startIntifaceEngine(): Promise<void> {
3434
"12345",
3535
"--use-bluetooth-le",
3636
"--server-name",
37-
"Eliza Buttplugin Server",
37+
"Eliza Intiface Server",
3838
"--use-device-websocket-server",
3939
"--user-device-config-file",
4040
configPath,
File renamed without changes.

0 commit comments

Comments
 (0)