Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/agent/prompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ OpenWiki CLI reference:
- \`openwiki --update [message]\` updates repository documentation under openwiki/ (code mode).
- \`openwiki personal --init [message]\` initializes the local personal brain wiki under ~/.openwiki/wiki.
- \`openwiki code --init [message]\` initializes repository documentation under openwiki/.
- \`openwiki personal --update [message]\` updates the local OpenWiki knowledge base under ~/.openwiki/wiki.
- \`openwiki code --update [message]\` updates repository documentation under openwiki/.
- \`openwiki --mode code --init [message]\` initializes repository documentation under openwiki/.
- \`openwiki --mode personal --init [message]\` initializes the local personal brain wiki under ~/.openwiki/wiki.
- \`openwiki -p "message"\` or \`openwiki --print "message"\` runs once, prints the final assistant output, and exits.
Expand Down
7 changes: 3 additions & 4 deletions src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,6 @@ export const helpContent: HelpContent = {
"openwiki --mode <personal|code> [--init|--update] [message]",
"openwiki [--modelId <model>]",
"openwiki [--modelId <model>] [message]",
"openwiki --update [message]",
"openwiki auth <provider>",
"openwiki auth configure <provider> [--force]",
"openwiki auth tools <provider>",
Expand Down Expand Up @@ -681,12 +680,12 @@ export const helpContent: HelpContent = {
"openwiki --init",
"openwiki personal --init",
"openwiki code --init",
"openwiki --update",
"openwiki --update --mode personal",
"openwiki personal --update",
"openwiki code --update",
'openwiki "What can you do?"',
'openwiki -p "Summarize what OpenWiki can do"',
"openwiki --modelId gpt-5.5",
'openwiki --update --modelId gpt-5.5 "Please document the API routes first"',
'openwiki code --update --modelId gpt-5.5 "Please document the API routes first"',
'openwiki personal --update "Refresh the wiki from configured connectors"',
"openwiki ingest all",
"openwiki ingest web-search",
Expand Down
3 changes: 3 additions & 0 deletions src/connectors/registry.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { createClickUpConnector } from "./sources/clickup.js";
import { createGitRepoConnector } from "./sources/git-repo.js";
import { createGmailConnector } from "./sources/gmail.js";
import { createHackerNewsConnector } from "./sources/hackernews.js";
Expand All @@ -8,6 +9,7 @@ import { createXConnector } from "./sources/x.js";
import type { ConnectorId, ConnectorRuntime } from "./types.js";

export const CONNECTOR_IDS = [
"clickup",
"git-repo",
"notion",
"x",
Expand All @@ -22,6 +24,7 @@ export function createConnectorRegistry(): Record<
ConnectorRuntime
> {
return {
clickup: createClickUpConnector(),
"git-repo": createGitRepoConnector(),
google: createGmailConnector(),
hackernews: createHackerNewsConnector(),
Expand Down
Loading