# Nushell core team meeting 2024-01-31
-
## Agenda
- [ ] Nupm documentation command and style: see [nupm#60](https://github.com/nushell/nupm/pull/60) and a [sample style from NGM](https://github.com/amtoine/nu-git-manager/blob/main/docs/index.md) generated with [doc in toolkit.nu](https://github.com/amtoine/nu-git-manager/blob/main/toolkit.nu#L332)
- [ ] glob as const? see [#11639](https://github.com/nushell/nushell/pull/11639) also raises the question of path expand and path exists as const
- [ ] 3rd party package files in nushell/* repositories
## Discussed Topics
## Issues
> :bulb: the issues which [needs-core-team-attention](https://github.com/nushell/nushell/labels/needs-core-team-attention)
> :bulb: **Note**
> to list all the PRs currently [opened in `nushell/nushell`](https://github.com/nushell/nushell/pulls):
> ```nu
> gh pr list --json url,number,author,title
> | from json
> | each {|i|
> $"- [($i.number)]\(($i.url)\) ($i.title) \(@($i.author.login)\)"
> }
> | reverse
> | to text
> ```