Skip to content
Draft
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
14 changes: 14 additions & 0 deletions extensions/amp-code-threads/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift
compiled_raycast_rust

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/amp-code-threads/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
8 changes: 8 additions & 0 deletions extensions/amp-code-threads/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Amp Code Threads Changelog

## [Initial Version] - {PR_MERGE_DATE}

- Search and browse Amp Code threads
- Infinite scroll pagination
- Copy CLI command to continue threads
- Open threads in browser
23 changes: 23 additions & 0 deletions extensions/amp-code-threads/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Amp Code Threads

Search and open your Amp Code threads directly from Raycast.

## Setup

This extension requires your Amp Code session token to authenticate API requests.

### How to Get Your Session Token

1. Open [ampcode.com](https://ampcode.com) in your browser and sign in
2. Open Developer Tools (`F12` or `Cmd+Option+I`)
3. Go to the **Application** tab
4. In the sidebar, expand **Cookies** and select `https://ampcode.com`
5. Find the cookie named `session` and copy its **Value**
6. Paste this value into the extension preferences when prompted

## Features

- Browse your Amp Code threads with infinite scroll
- Search threads by title
- Copy the CLI command to continue a thread (`amp threads continue <id>`)
- Open threads directly in your browser
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions extensions/amp-code-threads/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const { defineConfig } = require("eslint/config");
const raycastConfig = require("@raycast/eslint-config");

module.exports = defineConfig([
...raycastConfig,
]);
Loading
Loading