mirror of
https://github.com/wu736139669/hapi.git
synced 2026-08-05 06:24:37 +00:00
docs: rebrand Happy to HAPI and add component documentation
This commit rebrands the project from "Happy" to "HAPI" throughout the codebase, including documentation, comments, logs, and tool references. It also adds comprehensive README files for the server and web components, clarifies the monorepo structure in AGENTS.md and root README.md, and removes the outdated roadmap.md file. Changes include: - Rebrand references from Happy to HAPI in CLI, server, and web components - MCP tool names updated from mcp__happy__ to mcp__hapi__ - Process/service names updated consistently - New server/README.md with deployment and configuration guide - New web/README.md with stack and development instructions - Updated root README.md with quickstart guide - Updated AGENTS.md with cleaner structure documentation - Removed cli/roadmap.md (now superseded by documentation)
This commit is contained in:
@@ -271,7 +271,7 @@ export async function runCodex(opts: {
|
||||
await session.close();
|
||||
}
|
||||
|
||||
// Stop Happy MCP server
|
||||
// Stop HAPI MCP server
|
||||
happyServer.stop();
|
||||
|
||||
logger.debug('[Codex] Session termination complete, exiting');
|
||||
@@ -520,11 +520,11 @@ export async function runCodex(opts: {
|
||||
}
|
||||
});
|
||||
|
||||
// Start Happy MCP server (HTTP) and prepare STDIO bridge config for Codex
|
||||
// Start HAPI MCP server (HTTP) and prepare STDIO bridge config for Codex
|
||||
const happyServer = await startHappyServer(session);
|
||||
const bridgeCommand = getHappyCliCommand(['mcp', '--url', happyServer.url]);
|
||||
const mcpServers = {
|
||||
happy: {
|
||||
hapi: {
|
||||
command: bridgeCommand.command,
|
||||
args: bridgeCommand.args
|
||||
}
|
||||
@@ -727,7 +727,7 @@ export async function runCodex(opts: {
|
||||
logger.debug('[codex]: client.disconnect begin');
|
||||
await client.disconnect();
|
||||
logger.debug('[codex]: client.disconnect done');
|
||||
// Stop Happy MCP server
|
||||
// Stop HAPI MCP server
|
||||
logger.debug('[codex]: happyServer.stop');
|
||||
happyServer.stop();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user