Skip to content

Commit 3064015

Browse files
committed
Sync open source content 🐝 (from 95345e714b5d4f3377a723c2b2abaa14141c6185)
1 parent d498cb0 commit 3064015

File tree

11 files changed

+257
-7
lines changed

11 files changed

+257
-7
lines changed

docs/speakeasy-reference/cli/agent/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ asIndexPage: true
33
---
44

55
# agent
6-
76
`speakeasy agent`
87

8+
99
Docs & guided workflows for AI coding agents (start here: speakeasy agent context)
1010

1111
## Details
@@ -32,9 +32,9 @@ speakeasy agent [flags]
3232

3333
### Parent Command
3434

35-
* [speakeasy](/docs/speakeasy-reference/cli/getting-started) - The Speakeasy CLI tool provides access to the Speakeasy.com platform
36-
35+
* [speakeasy](/docs/speakeasy-reference/cli/getting-started) - The Speakeasy CLI tool provides access to the Speakeasy.com platform
3736
### Sub Commands
3837

39-
* [speakeasy agent context](/docs/speakeasy-reference/cli/agent/context) - Browse agent context documentation
40-
* [speakeasy agent feedback](/docs/speakeasy-reference/cli/agent/feedback) - Submit feedback on agent context content
38+
* [speakeasy agent context](/docs/speakeasy-reference/cli/agent/context) - Browse agent context documentation
39+
* [speakeasy agent feedback](/docs/speakeasy-reference/cli/agent/feedback) - Submit feedback on agent context content
40+
* [speakeasy agent setup-skills](/docs/speakeasy-reference/cli/agent/setup-skills) - Install Speakeasy agent skills for AI coding assistants

docs/speakeasy-reference/cli/agent/setup-skills.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# setup-skills
2-
32
`speakeasy agent setup-skills`
43

4+
55
Install Speakeasy agent skills for AI coding assistants
66

77
## Details
@@ -29,4 +29,4 @@ speakeasy agent setup-skills [flags]
2929

3030
### Parent Command
3131

32-
* [speakeasy agent](/docs/speakeasy-reference/cli/agent) - Docs & guided workflows for AI coding agents (start here: speakeasy agent context)
32+
* [speakeasy agent](/docs/speakeasy-reference/cli/agent) - Docs & guided workflows for AI coding agents (start here: speakeasy agent context)

docs/speakeasy-reference/cli/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ speakeasy [flags]
6161
* [speakeasy merge](/docs/speakeasy-reference/cli/merge) - Merge multiple OpenAPI documents into a single document
6262
* [speakeasy openapi](/docs/speakeasy-reference/cli/openapi) - Utilities for working with OpenAPI documents
6363
* [speakeasy overlay](/docs/speakeasy-reference/cli/overlay) - Work with OpenAPI Overlays
64+
* [speakeasy patches](/docs/speakeasy-reference/cli/patches) - Debug and inspect pristine vs patched SDK files
6465
* [speakeasy pull](/docs/speakeasy-reference/cli/pull) - Pull a spec from the registry or list available specs/tags
6566
* [speakeasy quickstart](/docs/speakeasy-reference/cli/quickstart) - Guided setup to help you create a new SDK in minutes.
6667
* [speakeasy repro](/docs/speakeasy-reference/cli/repro) - Reproduce a failed generation locally
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
asIndexPage: true
3+
---
4+
5+
# patches
6+
`speakeasy patches`
7+
8+
9+
Debug and inspect pristine vs patched SDK files
10+
11+
## Usage
12+
13+
```
14+
speakeasy patches [flags]
15+
```
16+
17+
### Options
18+
19+
```
20+
-h, --help help for patches
21+
```
22+
23+
### Options inherited from parent commands
24+
25+
```
26+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
27+
```
28+
29+
### Parent Command
30+
31+
* [speakeasy](/docs/speakeasy-reference/cli/getting-started) - The Speakeasy CLI tool provides access to the Speakeasy.com platform
32+
### Sub Commands
33+
34+
* [speakeasy patches restore-pristine](/docs/speakeasy-reference/cli/patches/restore-pristine) - Restore files to their pristine (generated) version, discarding custom edits
35+
* [speakeasy patches view-diff](/docs/speakeasy-reference/cli/patches/view-diff) - View diffs between pristine (generated) and current SDK files
36+
* [speakeasy patches view-pristine](/docs/speakeasy-reference/cli/patches/view-pristine) - Show the pristine (generated) version of a tracked file
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# all
2+
`speakeasy patches restore-pristine all`
3+
4+
5+
Restore all files with custom code to their pristine (generated) versions
6+
7+
## Usage
8+
9+
```
10+
speakeasy patches restore-pristine all [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-d, --dir string project directory containing .speakeasy/gen.lock (default ".")
17+
-h, --help help for all
18+
```
19+
20+
### Options inherited from parent commands
21+
22+
```
23+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
24+
```
25+
26+
### Parent Command
27+
28+
* [speakeasy patches restore-pristine](/docs/speakeasy-reference/cli/patches/restore-pristine) - Restore files to their pristine (generated) version, discarding custom edits
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# file
2+
`speakeasy patches restore-pristine file`
3+
4+
5+
Restore a file to its pristine (generated) version, discarding custom edits
6+
7+
## Usage
8+
9+
```
10+
speakeasy patches restore-pristine file [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-d, --dir string project directory containing .speakeasy/gen.lock (default ".")
17+
-f, --file string relative path to the tracked file (e.g. src/sdk/foo.py)
18+
-h, --help help for file
19+
```
20+
21+
### Options inherited from parent commands
22+
23+
```
24+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
25+
```
26+
27+
### Parent Command
28+
29+
* [speakeasy patches restore-pristine](/docs/speakeasy-reference/cli/patches/restore-pristine) - Restore files to their pristine (generated) version, discarding custom edits
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
asIndexPage: true
3+
---
4+
5+
# restore-pristine
6+
`speakeasy patches restore-pristine`
7+
8+
9+
Restore files to their pristine (generated) version, discarding custom edits
10+
11+
## Usage
12+
13+
```
14+
speakeasy patches restore-pristine [flags]
15+
```
16+
17+
### Options
18+
19+
```
20+
-h, --help help for restore-pristine
21+
```
22+
23+
### Options inherited from parent commands
24+
25+
```
26+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
27+
```
28+
29+
### Parent Command
30+
31+
* [speakeasy patches](/docs/speakeasy-reference/cli/patches) - Debug and inspect pristine vs patched SDK files
32+
### Sub Commands
33+
34+
* [speakeasy patches restore-pristine all](/docs/speakeasy-reference/cli/patches/restore-pristine/all) - Restore all files with custom code to their pristine (generated) versions
35+
* [speakeasy patches restore-pristine file](/docs/speakeasy-reference/cli/patches/restore-pristine/file) - Restore a file to its pristine (generated) version, discarding custom edits
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# file
2+
`speakeasy patches view-diff file`
3+
4+
5+
Show the diff between pristine (generated) and current version of a file
6+
7+
## Usage
8+
9+
```
10+
speakeasy patches view-diff file [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-d, --dir string project directory containing .speakeasy/gen.lock (default ".")
17+
-f, --file string relative path to the tracked file (e.g. src/sdk/foo.py)
18+
-h, --help help for file
19+
```
20+
21+
### Options inherited from parent commands
22+
23+
```
24+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
25+
```
26+
27+
### Parent Command
28+
29+
* [speakeasy patches view-diff](/docs/speakeasy-reference/cli/patches/view-diff) - View diffs between pristine (generated) and current SDK files
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# files
2+
`speakeasy patches view-diff files`
3+
4+
5+
List files that have custom code applied (differ from pristine generated version)
6+
7+
## Usage
8+
9+
```
10+
speakeasy patches view-diff files [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-d, --dir string project directory containing .speakeasy/gen.lock (default ".")
17+
-h, --help help for files
18+
```
19+
20+
### Options inherited from parent commands
21+
22+
```
23+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
24+
```
25+
26+
### Parent Command
27+
28+
* [speakeasy patches view-diff](/docs/speakeasy-reference/cli/patches/view-diff) - View diffs between pristine (generated) and current SDK files
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
asIndexPage: true
3+
---
4+
5+
# view-diff
6+
`speakeasy patches view-diff`
7+
8+
9+
View diffs between pristine (generated) and current SDK files
10+
11+
## Usage
12+
13+
```
14+
speakeasy patches view-diff [flags]
15+
```
16+
17+
### Options
18+
19+
```
20+
-h, --help help for view-diff
21+
```
22+
23+
### Options inherited from parent commands
24+
25+
```
26+
--logLevel string the log level (available options: [info, warn, error]) (default "info")
27+
```
28+
29+
### Parent Command
30+
31+
* [speakeasy patches](/docs/speakeasy-reference/cli/patches) - Debug and inspect pristine vs patched SDK files
32+
### Sub Commands
33+
34+
* [speakeasy patches view-diff file](/docs/speakeasy-reference/cli/patches/view-diff/file) - Show the diff between pristine (generated) and current version of a file
35+
* [speakeasy patches view-diff files](/docs/speakeasy-reference/cli/patches/view-diff/files) - List files that have custom code applied (differ from pristine generated version)

0 commit comments

Comments
 (0)