mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
44b4107f36
* feat(nowcoder): add 牛客网 adapter with 16 commands Add adapters for Nowcoder (牛客网), China's leading tech job-seeking and interview preparation community. - 7 Public commands: hot, trending, topics, recommend, creators, companies, jobs - 9 Cookie commands: search, suggest, experience, referral, salary, papers, practice, notifications, detail - All post-list commands include id field for drill-down to detail - Documentation: adapter page, index table, sidebar entry Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix(nowcoder): register adapter and document usage --------- Co-authored-by: tima <tima@cosmos-macmini.local> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: jackwener <jakevingoo@gmail.com>
31 lines
1.3 KiB
JavaScript
31 lines
1.3 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
|
|
cli({
|
|
site: 'nowcoder',
|
|
name: 'recommend',
|
|
description: 'Recommended feed',
|
|
domain: 'www.nowcoder.com',
|
|
strategy: Strategy.PUBLIC,
|
|
browser: false,
|
|
args: [
|
|
{ name: 'page', type: 'int', default: 1, help: 'Page number' },
|
|
{ name: 'limit', type: 'int', default: 15, help: 'Number of items' },
|
|
],
|
|
columns: ['rank', 'title', 'author', 'likes', 'comments', 'views', 'id'],
|
|
pipeline: [
|
|
{ fetch: { url: 'https://gw-c.nowcoder.com/api/sparta/home/recommend?page=${{ args.page }}&size=${{ args.limit }}' } },
|
|
{ select: 'data.records' },
|
|
{ map: {
|
|
rank: '${{ index + 1 }}',
|
|
title: `\${{ item.momentData?.title || item.longContentData?.title || item.contentData?.title || '' }}`,
|
|
author: `\${{ item.userBrief?.nickname || '' }}`,
|
|
likes: '${{ item.frequencyData?.likeCnt || 0 }}',
|
|
comments: '${{ item.frequencyData?.commentCnt || 0 }}',
|
|
views: '${{ item.frequencyData?.viewCnt || 0 }}',
|
|
id: `\${{ item.momentData?.uuid || item.longContentData?.uuid || item.contentData?.uuid || item.contentId || '' }}`,
|
|
} },
|
|
{ filter: 'item.title' },
|
|
{ limit: '${{ args.limit }}' },
|
|
],
|
|
});
|