Files
jackwener__opencli/clis/nowcoder/notifications.js
Cosmostima 44b4107f36 feat(nowcoder): add 牛客网 adapter with 16 commands (#1036)
* 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>
2026-04-15 22:51:55 +08:00

30 lines
1.0 KiB
JavaScript

import { cli } from '@jackwener/opencli/registry';
cli({
site: 'nowcoder',
name: 'notifications',
description: 'Unread message summary',
domain: 'www.nowcoder.com',
args: [],
columns: ['type', 'unread'],
pipeline: [
{ navigate: 'https://www.nowcoder.com' },
{ evaluate: `(async () => {
const r = await fetch('https://gw-c.nowcoder.com/api/sparta/message/pc/unread/detail', {credentials: 'include'});
const d = await r.json();
if (!d.success) throw new Error(d.msg || 'API failed');
const data = d.data;
return [
{type: 'system', unread: data.systemNotice?.unreadCount || 0},
{type: 'likes', unread: data.likeCollect?.unreadCount || 0},
{type: 'comments', unread: data.commentMessage?.unreadCount || 0},
{type: 'follows', unread: data.followMessage?.unreadCount || 0},
{type: 'messages', unread: data.privateMessage?.unreadCount || 0},
{type: 'job_apply', unread: data.nowPickJobApply?.unreadCount || 0},
{type: 'total', unread: data.total?.unreadCount || 0},
];
})()
` },
],
});