Skip to content
Merged

done #1949

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
6 changes: 5 additions & 1 deletion agents-docs/content/tutorials/cli/pull-from-cloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ If you don't have the project locally yet, you'll specify the project ID in the

## Step 2: Run the pull command

<Note>
Run `inkeep pull` from the directory that contains your `inkeep.config.ts`, or from any subdirectory below it.
</Note>

### For an existing project

From inside your project directory, run:
Expand All @@ -54,7 +58,7 @@ inkeep pull
The CLI will:
1. Detect the project from your `index.ts` file
2. Resolve configuration — your active [CLI profile](/tutorials/cli/setup-profile) overrides `inkeep.config.ts` for API URLs, API key, and tenant ID (see [Configuration Priority](/typescript-sdk/cli-reference#configuration-priority))
3. Fetch the latest configuration from Inkeep Cloud
3. Fetch the latest project data from the cloud
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 MINOR: Terminology consistency — "the cloud" vs "Inkeep Cloud"

Issue: The updated text uses "the cloud" whereas the rest of the documentation consistently uses "Inkeep Cloud" as the branded product name.

Why: The original text said "Fetch the latest configuration from Inkeep Cloud" — this change drops the brand name. Consistency in product naming improves first-contact legibility and reinforces brand recognition across documentation surfaces.

Fix:

Suggested change
3. Fetch the latest project data from the cloud
3. Fetch the latest project data from Inkeep Cloud

Refs:

4. Compare remote changes against your local files
5. Generate updated TypeScript files, preserving your local code structure

Expand Down
4 changes: 4 additions & 0 deletions agents-docs/content/tutorials/cli/push-to-cloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ Navigate to your project directory. A project directory contains an `index.ts` f
cd my-project
```

<Note>
Run `inkeep push` from the directory that contains your `inkeep.config.ts`, or from any subdirectory below it.
</Note>

## Step 2: Push to Inkeep Cloud

Run the push command:
Expand Down
Loading